diff options
author | Nicola Mettifogo | 2007-05-20 16:15:35 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2007-05-20 16:15:35 +0000 |
commit | 1eafa813edbe5a1ae5e3e0f7ff9e28d221f578e4 (patch) | |
tree | fc1c61be40eab67f7961bc21167c2b4bbb9eb895 | |
parent | 2dd30d9aa6ee0adbd0a24fbd5ac82b8d0f216630 (diff) | |
download | scummvm-rg350-1eafa813edbe5a1ae5e3e0f7ff9e28d221f578e4.tar.gz scummvm-rg350-1eafa813edbe5a1ae5e3e0f7ff9e28d221f578e4.tar.bz2 scummvm-rg350-1eafa813edbe5a1ae5e3e0f7ff9e28d221f578e4.zip |
Removed phony 'start game' message from Amiga demo.
svn-id: r26891
-rw-r--r-- | engines/parallaction/intro.cpp | 11 |
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; |