diff options
Diffstat (limited to 'src/player.h')
-rw-r--r-- | src/player.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/player.h b/src/player.h index 30df1db8b..3bbb4034d 100644 --- a/src/player.h +++ b/src/player.h @@ -263,7 +263,7 @@ struct PlayerControl left = false; right = false; jump = false; - superspeed = false; + aux1 = false; pitch = 0; yaw = 0; } @@ -273,7 +273,7 @@ struct PlayerControl bool a_left, bool a_right, bool a_jump, - bool a_superspeed, + bool a_aux1, float a_pitch, float a_yaw ) @@ -283,7 +283,7 @@ struct PlayerControl left = a_left; right = a_right; jump = a_jump; - superspeed = a_superspeed; + aux1 = a_aux1; pitch = a_pitch; yaw = a_yaw; } @@ -292,7 +292,7 @@ struct PlayerControl bool left; bool right; bool jump; - bool superspeed; + bool aux1; float pitch; float yaw; }; |