summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 127c306..714845c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -20,8 +20,9 @@ int main()
e.off();
else if(e.gEventType() == SDL_KEYDOWN)
switch(e.gEvent().key.keysym.sym){
- case SDLK_RIGHT: speed+=30; break;
- case SDLK_LEFT : if(speed >30) speed-=30; break;
+ case SDLK_q: e.off(); break;
+ case SDLK_EQUALS: speed+=30; break;
+ case SDLK_MINUS: if(speed >30) speed-=30; break;
}
}