From 25a7fabed83caccb2c321bb4d080c5907f37b60a Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sun, 6 Feb 2011 16:35:27 +0200 Subject: mapgen tweaking --- src/player.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/player.h') 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; }; -- cgit v1.2.3