From 5f20bf11e6b694319d1d6a3e8df833008bbb56b7 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Thu, 6 Oct 2005 15:56:06 +0000 Subject: It should always be possible to interrupt the intro with Escape now. Most of the job was already done, though. Only the final bit was missing. svn-id: r18951 --- saga/interface.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'saga/interface.cpp') 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; -- cgit v1.2.3