diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-02-23 00:16:19 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-02-23 00:16:19 +0100 |
commit | 6fc94e5dd57dd80d451623280213aecbf4039a12 (patch) | |
tree | f988c22770aa8a5e11dd188f6a24c960aad6de13 /src/ft_get_player_spawn.c | |
parent | Fixed map_three, Makefiles have POWERMODE (diff) | |
download | 42-cub3d-6fc94e5dd57dd80d451623280213aecbf4039a12.tar.gz 42-cub3d-6fc94e5dd57dd80d451623280213aecbf4039a12.tar.bz2 42-cub3d-6fc94e5dd57dd80d451623280213aecbf4039a12.tar.xz 42-cub3d-6fc94e5dd57dd80d451623280213aecbf4039a12.tar.zst 42-cub3d-6fc94e5dd57dd80d451623280213aecbf4039a12.zip |
GCC-friendly now
Diffstat (limited to '')
-rw-r--r-- | src/ft_get_player_spawn.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ft_get_player_spawn.c b/src/ft_get_player_spawn.c index e1f313e..617ec22 100644 --- a/src/ft_get_player_spawn.c +++ b/src/ft_get_player_spawn.c @@ -32,13 +32,8 @@ static void static void ft_get_s_dir(t_player *pl) { - float sav_dir_x; - float sav_plane_x; - - sav_dir_x = pl->dir_x; pl->dir_x = -pl->dir_x; pl->dir_y = -pl->dir_y; - sav_plane_x = pl->plane_x; pl->plane_x = -pl->plane_x; pl->plane_y = -pl->plane_y; } |