aboutsummaryrefslogtreecommitdiff
path: root/saga/interface.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-08-13 19:41:11 +0000
committerEugene Sandulenko2005-08-13 19:41:11 +0000
commit8c4494578e8273841473934facb68e6476ee16ac (patch)
treefebcdc982e120914997bdb45bffb745751f39c4a /saga/interface.cpp
parent91a96ef5cdd9c71d4434768d87d0a46c34e6d33c (diff)
downloadscummvm-rg350-8c4494578e8273841473934facb68e6476ee16ac.tar.gz
scummvm-rg350-8c4494578e8273841473934facb68e6476ee16ac.tar.bz2
scummvm-rg350-8c4494578e8273841473934facb68e6476ee16ac.zip
Fix bug #1258537 "ITE: Introduction text is black"
svn-id: r18677
Diffstat (limited to 'saga/interface.cpp')
-rw-r--r--saga/interface.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/saga/interface.cpp b/saga/interface.cpp
index 88ce03b5fe..7e0d2402f1 100644
--- a/saga/interface.cpp
+++ b/saga/interface.cpp
@@ -329,7 +329,7 @@ bool Interface::processAscii(uint16 ascii, bool synthetic) {
switch (_panelMode) {
case kPanelNull:
if (ascii == 27) { // Esc
- if (_vm->_scene->isInDemo()) {
+ if (_vm->_scene->isInIntro()) {
_vm->_scene->skipScene();
} else {
_vm->_actor->abortAllSpeeches();
@@ -558,7 +558,7 @@ void Interface::draw() {
backBuffer = _vm->_gfx->getBackBuffer();
- if (_vm->_scene->isInDemo() || _fadeMode == kFadeOut)
+ if (_vm->_scene->isInIntro() || _fadeMode == kFadeOut)
return;
// Disable this for IHNM for now, since that game uses the full screen
@@ -1258,7 +1258,7 @@ void Interface::update(const Point& mousePoint, int updateFlag) {
if (!_active && _panelMode == kPanelNull && (updateFlag & UPDATE_MOUSECLICK))
_vm->_actor->abortSpeech();
- if (_vm->_scene->isInDemo() || _fadeMode == kFadeOut || !_active) {
+ if (_vm->_scene->isInIntro() || _fadeMode == kFadeOut || !_active) {
return;
}