summaryrefslogtreecommitdiff
path: root/src/inputmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inputmanager.cpp')
-rw-r--r--src/inputmanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputmanager.cpp b/src/inputmanager.cpp
index 7f62862be..969867a83 100644
--- a/src/inputmanager.cpp
+++ b/src/inputmanager.cpp
@@ -503,7 +503,7 @@ bool InputManager::handleEvent(const SDL_Event &event)
}
if (gui)
{
- bool res = gui->handleInput();
+ const bool res = gui->handleInput();
if (res && event.type == SDL_KEYDOWN)
return true;
}
@@ -689,7 +689,7 @@ int InputManager::getKeyIndex(const int value, const int grp,
return Input::KEY_NO_VALUE;
}
-int InputManager::getActionByKey(const SDL_Event &event)
+int InputManager::getActionByKey(const SDL_Event &event) const
{
// for now support only keyboard events
if (event.type == SDL_KEYDOWN || event.type == SDL_KEYUP)