aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_extra_keys.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ft_extra_keys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_extra_keys.c b/src/ft_extra_keys.c
index 507f808..e694667 100644
--- a/src/ft_extra_keys.c
+++ b/src/ft_extra_keys.c
@@ -22,7 +22,7 @@ int
float sav_plane_x;
const float rot_speed = FT_ROT_SPEED;
- pl = clist->plist;
+ pl = &clist->plist;
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);
@@ -40,7 +40,7 @@ int
float sav_plane_x;
const float rot_speed = FT_ROT_SPEED;
- pl = clist->plist;
+ pl = &clist->plist;
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);