diff options
author | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-02-02 20:41:16 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-02-02 20:41:16 +0100 |
commit | 425c256dae612779031a364c8f0c165d837c10a1 (patch) | |
tree | aa53c7e7a452758381d2292512372e1c56685a3e /src/ft_key_events.c | |
parent | Norme (diff) | |
download | 42-cub3d-425c256dae612779031a364c8f0c165d837c10a1.tar.gz 42-cub3d-425c256dae612779031a364c8f0c165d837c10a1.tar.bz2 42-cub3d-425c256dae612779031a364c8f0c165d837c10a1.tar.xz 42-cub3d-425c256dae612779031a364c8f0c165d837c10a1.tar.zst 42-cub3d-425c256dae612779031a364c8f0c165d837c10a1.zip |
Removed useless printfs
Diffstat (limited to '')
-rw-r--r-- | src/ft_key_events.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ft_key_events.c b/src/ft_key_events.c index c34d28f..3fbfc6f 100644 --- a/src/ft_key_events.c +++ b/src/ft_key_events.c @@ -21,7 +21,6 @@ static int t_player *pl; pl = clist->plist; - ft_printf("[W]\n"); if (pl->view_side == 1) pl->pos_y -= 1; else if (pl->view_side == 2) @@ -40,7 +39,6 @@ static int t_player *pl; pl = clist->plist; - ft_printf("[A]\n"); pl->view_side -= 1; if (pl->view_side == 0) pl->view_side = 4; @@ -53,7 +51,6 @@ static int t_player *pl; pl = clist->plist; - ft_printf("[S]\n"); if (pl->view_side == 1) pl->pos_y += 1; else if (pl->view_side == 2) @@ -72,7 +69,6 @@ static int t_player *pl; pl = clist->plist; - ft_printf("[D]\n"); pl->view_side += 1; if (pl->view_side == 5) pl->view_side = 1; |