diff options
author | Eugene Sandulenko | 2016-09-15 15:44:55 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-09-15 15:44:55 +0200 |
commit | 1d6d11192e9b9963ca0549f12eb861c7b687a807 (patch) | |
tree | c392edf5f35576d0e057b4fc56592a748b344cfb | |
parent | 20cdb0182a49bff7f5f61169be5d8879dbbb9930 (diff) | |
download | scummvm-rg350-1d6d11192e9b9963ca0549f12eb861c7b687a807.tar.gz scummvm-rg350-1d6d11192e9b9963ca0549f12eb861c7b687a807.tar.bz2 scummvm-rg350-1d6d11192e9b9963ca0549f12eb861c7b687a807.zip |
FULLPIPE: Fix navigation in scene28
-rw-r--r-- | engines/fullpipe/scenes/scene28.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes/scene28.cpp b/engines/fullpipe/scenes/scene28.cpp index 391b79be88..e67bc41614 100644 --- a/engines/fullpipe/scenes/scene28.cpp +++ b/engines/fullpipe/scenes/scene28.cpp @@ -268,6 +268,7 @@ void sceneHandler28_clickLift(int keycode) { if (mq) { ExCommand *ex = new ExCommand(0, 17, MSG_SC28_CLICKLIFT, 0, 0, 0, 1, 0, 0, 0); ex->_excFlags |= 3; + ex->_param = keycode; mq->addExCommandToEnd(ex); |