aboutsummaryrefslogtreecommitdiff
path: root/saga/interface.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-10-04 23:59:09 +0000
committerEugene Sandulenko2005-10-04 23:59:09 +0000
commitc7e8af5e5e620b9a4fec4a88460e42410eae6e5d (patch)
tree39ed9f7531b8ca1f09a587524eda7e07c1ac099b /saga/interface.cpp
parent62a9b56577bd015328d9b185f9a7a9450eb22147 (diff)
downloadscummvm-rg350-c7e8af5e5e620b9a4fec4a88460e42410eae6e5d.tar.gz
scummvm-rg350-c7e8af5e5e620b9a4fec4a88460e42410eae6e5d.tar.bz2
scummvm-rg350-c7e8af5e5e620b9a4fec4a88460e42410eae6e5d.zip
Proper place for cutawaySkip() call
svn-id: r18934
Diffstat (limited to 'saga/interface.cpp')
-rw-r--r--saga/interface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/saga/interface.cpp b/saga/interface.cpp
index 048ec8da99..867f8a043a 100644
--- a/saga/interface.cpp
+++ b/saga/interface.cpp
@@ -332,8 +332,6 @@ bool Interface::processAscii(uint16 ascii, bool synthetic) {
return true;
}
- _vm->_scene->cutawaySkip();
-
switch (_panelMode) {
case kPanelNull:
if (ascii == 27) { // Esc
@@ -343,6 +341,8 @@ bool Interface::processAscii(uint16 ascii, bool synthetic) {
if (!_disableAbortSpeeches)
_vm->_actor->abortAllSpeeches();
}
+ _vm->_scene->cutawaySkip();
+
return true;
}
break;