From bf4b1fb02a42f089468a487425f46765cbd00043 Mon Sep 17 00:00:00 2001
From: Allanis <allanis@saracraft.net>
Date: Sat, 2 Feb 2013 21:56:04 +0000
Subject: [PATCH] [Remove] Who the hell uses arrow keys for movement these days
 anyway?!

---
 src/main.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/main.c b/src/main.c
index eed1e87..fc187ae 100644
--- a/src/main.c
+++ b/src/main.c
@@ -62,11 +62,8 @@ int main(int argc, char** argv) {
 
   // input.
   input_init();
-  input_setKeybind("accel",  KEYBIND_KEYBOARD, SDLK_UP,     0);
   input_setKeybind("accel",  KEYBIND_KEYBOARD, SDLK_w,      0);
-  input_setKeybind("left",   KEYBIND_KEYBOARD, SDLK_LEFT,   0);
   input_setKeybind("left",   KEYBIND_KEYBOARD, SDLK_a,      0);
-  input_setKeybind("right",  KEYBIND_KEYBOARD, SDLK_RIGHT,  0);
   input_setKeybind("right",  KEYBIND_KEYBOARD, SDLK_d,      0);
 
   // Use Lua to parse configuration file.