diff options
author | Travis Howell | 2007-06-15 04:22:21 +0000 |
---|---|---|
committer | Travis Howell | 2007-06-15 04:22:21 +0000 |
commit | ef14ab45df2c1e1994a66f9103ae181dcda1df60 (patch) | |
tree | 7c7239f277b98b13673d2c74018c86c34d78b806 /engines | |
parent | e5c1149cdec3edd55f71a2264bebbd51c4bc8ccd (diff) | |
download | scummvm-rg350-ef14ab45df2c1e1994a66f9103ae181dcda1df60.tar.gz scummvm-rg350-ef14ab45df2c1e1994a66f9103ae181dcda1df60.tar.bz2 scummvm-rg350-ef14ab45df2c1e1994a66f9103ae181dcda1df60.zip |
Another adjustment for Amiga version.
svn-id: r27413
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/menu.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/parallaction/menu.cpp b/engines/parallaction/menu.cpp index 2fbae7d27f..d0b23b0d49 100644 --- a/engines/parallaction/menu.cpp +++ b/engines/parallaction/menu.cpp @@ -178,6 +178,10 @@ void Menu::newGame() { uint16 Menu::chooseLanguage() { + if (_vm->getFeatures() & GF_DEMO) { + return 1; + } + // TODO: should return the language ID supported by Amiga versions // this can be done with some flags in the detection structures @@ -312,7 +316,7 @@ void Menu::selectCharacter() { _vm->_gfx->setFont(kFontMenu); - _vm->_disk->selectArchive((_vm->getPlatform() == Common::kPlatformPC) ? "disk1" : "disk0"); + _vm->_disk->selectArchive((_vm->getFeatures() & GF_DEMO) ? "disk0" : "disk1"); _vm->_disk->loadSlide("password"); // loads background into kBitBack buffer |