diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-14 17:45:51 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-14 17:45:51 +0200 |
commit | 329c93d7ed710dae24d560c7469acf12871a1363 (patch) | |
tree | 27a1841214cf359425548813cc1fe8c783515429 /src/ft_floor_threads.c | |
parent | Reverting cave map (diff) | |
download | 42-cub3d-329c93d7ed710dae24d560c7469acf12871a1363.tar.gz 42-cub3d-329c93d7ed710dae24d560c7469acf12871a1363.tar.bz2 42-cub3d-329c93d7ed710dae24d560c7469acf12871a1363.tar.xz 42-cub3d-329c93d7ed710dae24d560c7469acf12871a1363.tar.zst 42-cub3d-329c93d7ed710dae24d560c7469acf12871a1363.zip |
Doing norminette
Diffstat (limited to 'src/ft_floor_threads.c')
-rw-r--r-- | src/ft_floor_threads.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ft_floor_threads.c b/src/ft_floor_threads.c index 05f75aa..c98395a 100644 --- a/src/ft_floor_threads.c +++ b/src/ft_floor_threads.c @@ -70,7 +70,7 @@ void t_cub *cl; cl = (t_cub *)vargp; - y = (cl->wlist.y_size / 2); + y = (cl->wlist.y_size / 2); while (y < (cl->wlist.y_size)) { x = 2 * (cl->wlist.x_size / 5); @@ -94,7 +94,7 @@ void t_cub *cl; cl = (t_cub *)vargp; - y = (cl->wlist.y_size / 2); + y = (cl->wlist.y_size / 2); while (y < (cl->wlist.y_size)) { x = 3 * (cl->wlist.x_size / 5); @@ -118,7 +118,7 @@ void t_cub *cl; cl = (t_cub *)vargp; - y = (cl->wlist.y_size / 2); + y = (cl->wlist.y_size / 2); while (y < (cl->wlist.y_size)) { x = 4 * (cl->wlist.x_size / 5); |