aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/parallaction/intro.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/engines/parallaction/intro.cpp b/engines/parallaction/intro.cpp
index 2292058549..059555e862 100644
--- a/engines/parallaction/intro.cpp
+++ b/engines/parallaction/intro.cpp
@@ -159,17 +159,18 @@ void _c_endIntro(void *parm) {
_vm->_gfx->copyScreen(Gfx::kBitBack, Gfx::kBitFront);
}
-
debugC(1, kDebugLocation, "endIntro(): done showing credits");
- _vm->_gfx->displayCenteredString(80, "CLICK MOUSE BUTTON TO START");
- _vm->_gfx->updateScreen();
+ if ((_vm->getFeatures() & GF_DEMO) == 0) {
+ _vm->_gfx->displayCenteredString(80, "CLICK MOUSE BUTTON TO START");
+ _vm->_gfx->updateScreen();
- waitUntilLeftClick();
+ waitUntilLeftClick();
- if ((_vm->getFeatures() & GF_DEMO) == 0) {
_engineFlags &= ~kEngineMouse;
_vm->_menu->selectCharacter();
+ } else {
+ waitUntilLeftClick();
}
return;