about summary refs log tree commit diff
path: root/src/game/client/components/binds.cpp
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2008-10-23 16:18:33 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2008-10-23 16:18:33 +0000
commitbd5b2b9f85522203609df18292df510dbb674246 (patch)
treec7c0d3652718526bcaaf7c7e32ff6e1f03a4b156 /src/game/client/components/binds.cpp
parent6d86d949fdfec590e9bed0ff126271ebab81796a (diff)
downloadzcatch-bd5b2b9f85522203609df18292df510dbb674246.tar.gz
zcatch-bd5b2b9f85522203609df18292df510dbb674246.zip
removed glfw and portaudio. SDL is now a requirement
Diffstat (limited to 'src/game/client/components/binds.cpp')
-rw-r--r--src/game/client/components/binds.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/game/client/components/binds.cpp b/src/game/client/components/binds.cpp
index de5f4f05..68f76f35 100644
--- a/src/game/client/components/binds.cpp
+++ b/src/game/client/components/binds.cpp
@@ -87,13 +87,9 @@ void BINDS::set_defaults()
 	bind(KEY_TAB, "+scoreboard");
 	bind(KEY_F10, "screenshot");
 
-#ifdef CONFIG_NO_SDL
-	bind('A', "+left");
-	bind('D', "+right");
-#else
 	bind('a', "+left");
 	bind('d', "+right");
-#endif
+
 	bind(KEY_SPACE, "+jump");
 	bind(KEY_MOUSE_1, "+fire");
 	bind(KEY_MOUSE_2, "+hook");
@@ -108,13 +104,8 @@ void BINDS::set_defaults()
 	bind(KEY_MOUSE_WHEEL_UP, "+prevweapon");
 	bind(KEY_MOUSE_WHEEL_DOWN, "+nextweapon");
 	
-#ifdef CONFIG_NO_SDL
-	bind('T', "chat all");
-	bind('Y', "chat team");	
-#else
 	bind('t', "chat all");
 	bind('y', "chat team");	
-#endif
 
 	bind(KEY_F3, "vote yes");
 	bind(KEY_F4, "vote no");