aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/champion.cpp
diff options
context:
space:
mode:
authorStrangerke2016-08-20 11:00:24 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commit92c9c54481b8eccc9454c982976221baa3697704 (patch)
tree5bf3c6570fad00055c339683316f65b35967b1dc /engines/dm/champion.cpp
parent705e906698505e8a547ef46c8a2fc65e3f48a49b (diff)
downloadscummvm-rg350-92c9c54481b8eccc9454c982976221baa3697704.tar.gz
scummvm-rg350-92c9c54481b8eccc9454c982976221baa3697704.tar.bz2
scummvm-rg350-92c9c54481b8eccc9454c982976221baa3697704.zip
DM: Start refactoring of eventMan
Diffstat (limited to 'engines/dm/champion.cpp')
-rw-r--r--engines/dm/champion.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/dm/champion.cpp b/engines/dm/champion.cpp
index 79840fa1c4..2af6889a05 100644
--- a/engines/dm/champion.cpp
+++ b/engines/dm/champion.cpp
@@ -867,8 +867,8 @@ void ChampionMan::f314_wakeUp() {
_vm->_displayMan->f98_drawFloorAndCeiling();
_vm->_eventMan->_g441_primaryMouseInput = g447_PrimaryMouseInput_Interface;
_vm->_eventMan->_g442_secondaryMouseInput = g448_SecondaryMouseInput_Movement;
- _vm->_eventMan->_g443_primaryKeyboardInput = g458_primaryKeyboardInput_interface;
- _vm->_eventMan->_g444_secondaryKeyboardInput = g459_secondaryKeyboardInput_movement;
+ _vm->_eventMan->_g443_primaryKeyboardInput = _vm->_eventMan->g458_primaryKeyboardInput_interface;
+ _vm->_eventMan->_g444_secondaryKeyboardInput = _vm->_eventMan->g459_secondaryKeyboardInput_movement;
_vm->_eventMan->f357_discardAllInput();
_vm->_menuMan->f457_drawEnabledMenus();
}