From f5e4e2f56a9d1b6019cc937e1291930455502c99 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Fri, 14 Feb 2020 18:57:10 +0100 Subject: Bug fix, changed rot speed --- src/ft_draw_verline.c | 2 +- src/ft_extra_keys.c | 4 ++-- src/ft_key_events.c | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c index 6584bcb..d7ebe34 100644 --- a/src/ft_draw_verline.c +++ b/src/ft_draw_verline.c @@ -15,7 +15,7 @@ static void ft_draw_floor(t_cub *cl, int32_t y, int32_t x) { - while (y <= cl->wlist->y_size) + while (y < cl->wlist->y_size) { *(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = ft_rgb_to_hex(cl->f_rgb); diff --git a/src/ft_extra_keys.c b/src/ft_extra_keys.c index 3ca8fd8..2e9ccf7 100644 --- a/src/ft_extra_keys.c +++ b/src/ft_extra_keys.c @@ -23,7 +23,7 @@ int float rot_speed; pl = clist->plist; - rot_speed = 0.3; + rot_speed = 0.1; sav_dir_x = pl->dir_x; pl->dir_x = pl->dir_x * cos(rot_speed) - pl->dir_y * sin(rot_speed); pl->dir_y = sav_dir_x * sin(rot_speed) + pl->dir_y * cos(rot_speed); @@ -42,7 +42,7 @@ int float rot_speed; pl = clist->plist; - rot_speed = 0.3; + rot_speed = 0.1; sav_dir_x = pl->dir_x; pl->dir_x = pl->dir_x * cos(-rot_speed) - pl->dir_y * sin(-rot_speed); pl->dir_y = sav_dir_x * sin(-rot_speed) + pl->dir_y * cos(-rot_speed); diff --git a/src/ft_key_events.c b/src/ft_key_events.c index e08e3d0..0609ba4 100644 --- a/src/ft_key_events.c +++ b/src/ft_key_events.c @@ -30,6 +30,8 @@ static uint16_t (tmp_code == 3) ? (keycode = UINT16_MAX) : 0; (tmp_code == 4) ? (keycode = UINT16_MAX) : 0; (tmp_code == 5) ? (keycode = UINT16_MAX) : 0; + (tmp_code == FT_ESC_KEY) ? (keycode = FT_ESC_KEY) : 0; + (tmp_code == FT_F1_KEY) ? (keycode = FT_F1_KEY) : 0; return (keycode); } -- cgit v1.2.3