diff options
author | Nicola Mettifogo | 2008-07-22 10:17:19 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2008-07-22 10:17:19 +0000 |
commit | cc0f95ce744b4078b3399e196101c239b7b094c9 (patch) | |
tree | 69d3f9d603cdfda7de60ff1acedf2586527936c8 | |
parent | 2a90435e5dccc0085613e35cc7177d1766cea6d0 (diff) | |
download | scummvm-rg350-cc0f95ce744b4078b3399e196101c239b7b094c9.tar.gz scummvm-rg350-cc0f95ce744b4078b3399e196101c239b7b094c9.tar.bz2 scummvm-rg350-cc0f95ce744b4078b3399e196101c239b7b094c9.zip |
Fix build.
svn-id: r33193
-rw-r--r-- | engines/parallaction/dialogue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/dialogue.cpp b/engines/parallaction/dialogue.cpp index 5f0d9f76f2..0d8b933907 100644 --- a/engines/parallaction/dialogue.cpp +++ b/engines/parallaction/dialogue.cpp @@ -379,7 +379,7 @@ void Parallaction::exitDialogueMode() { _input->_inputMode = Input::kInputModeGame; if (_dialogueMan->_cmdList) { - _vm->_cmdExec->runList(*_dialogueMan->_cmdList); + _vm->_cmdExec->run(*_dialogueMan->_cmdList); } // The current instance of _dialogueMan must be destroyed before the zone commands |