aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;