aboutsummaryrefslogtreecommitdiff
path: root/saga/interface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saga/interface.cpp')
-rw-r--r--saga/interface.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/saga/interface.cpp b/saga/interface.cpp
index 867f8a043a..2c6418b3b1 100644
--- a/saga/interface.cpp
+++ b/saga/interface.cpp
@@ -341,8 +341,14 @@ bool Interface::processAscii(uint16 ascii, bool synthetic) {
if (!_disableAbortSpeeches)
_vm->_actor->abortAllSpeeches();
}
+ return true;
+ }
+ break;
+ case kPanelCutaway:
+ if (ascii == 27) { // Esc
+ if (!_disableAbortSpeeches)
+ _vm->_actor->abortAllSpeeches();
_vm->_scene->cutawaySkip();
-
return true;
}
break;