diff options
Diffstat (limited to 'backends/common/keymapper.cpp')
-rw-r--r-- | backends/common/keymapper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/common/keymapper.cpp b/backends/common/keymapper.cpp index 1d06a6dbd7..b31333aebb 100644 --- a/backends/common/keymapper.cpp +++ b/backends/common/keymapper.cpp @@ -86,7 +86,7 @@ bool Keymapper::mapKeyUp(const KeyState& key) { bool Keymapper::mapKey(const KeyState& key, bool isKeyDown) { if (!_currentMap) return false; - UserAction *action = _currentMap->getMappedAction(key); + Action *action = _currentMap->getMappedAction(key); if (!action) return false; List<Event>::iterator it; for (it = action->events.begin(); it != action->events.end(); it++) { |