Proper place for cutawaySkip() call

svn-id: r18934
This commit is contained in:
Eugene Sandulenko 2005-10-04 23:59:09 +00:00
parent 62a9b56577
commit c7e8af5e5e

View File

@ -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;