diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ft_draw_scene.c | 2 | ||||
| -rw-r--r-- | src/ft_get_player_spawn.c | 8 | 
2 files changed, 5 insertions, 5 deletions
diff --git a/src/ft_draw_scene.c b/src/ft_draw_scene.c index ec2cc89..966d357 100644 --- a/src/ft_draw_scene.c +++ b/src/ft_draw_scene.c @@ -18,7 +18,7 @@  void  	ft_draw_scene(t_cub *clist)  { -	mlx_clear_window(clist->wlist->wlx, clist->wlist->winptr); +	/* mlx_clear_window(clist->wlist->wlx, clist->wlist->winptr); */  	clist->img.img = mlx_new_image(clist->wlist->wlx,  				clist->wlist->x_size, clist->wlist->y_size);  	clist->img.ptr = mlx_get_data_addr(clist->img.img, &clist->img.bpp, diff --git a/src/ft_get_player_spawn.c b/src/ft_get_player_spawn.c index c848872..4e392e8 100644 --- a/src/ft_get_player_spawn.c +++ b/src/ft_get_player_spawn.c @@ -22,10 +22,10 @@ static void  	float	sav_plane_x;  	sav_dir_x = pl->dir_x; -	pl->dir_x = pl->dir_y; +	pl->dir_x = -pl->dir_y;  	pl->dir_y = sav_dir_x;  	sav_plane_x = pl->plane_x; -	pl->plane_x = pl->plane_y; +	pl->plane_x = -pl->plane_y;  	pl->plane_y = sav_plane_x;  } @@ -50,10 +50,10 @@ static void  	float	sav_plane_x;  	sav_dir_x = pl->dir_x; -	pl->dir_x = -pl->dir_y; +	pl->dir_x = pl->dir_y;  	pl->dir_y = -sav_dir_x;  	sav_plane_x = pl->plane_x; -	pl->plane_x = -pl->plane_y; +	pl->plane_x = pl->plane_y;  	pl->plane_y = -sav_plane_x;  }  | 
