commit 877b7c65
The right arrow now works in the menu
Changed files
| M | source/code/MenuSystem.cpp before |
diff --git a/source/code/MenuSystem.cpp b/source/code/MenuSystem.cpp
index 9d364c1..8efde0e 100644
--- a/source/code/MenuSystem.cpp
+++ b/source/code/MenuSystem.cpp
@@ -254,7 +254,7 @@ bool isLeftEvent(const SDL_Event& event) {
bool isRightEvent(const SDL_Event& event) {
if ( event.type == SDL_KEYDOWN ) {
- if (event.key.keysym.sym == SDLK_DOWN) {
+ if (event.key.keysym.sym == SDLK_RIGHT) {
return true;
}
}