diff options
author | Travis Howell | 2003-09-06 01:20:15 +0000 |
---|---|---|
committer | Travis Howell | 2003-09-06 01:20:15 +0000 |
commit | af78f4dfae1995c60e2743d702288559174d4230 (patch) | |
tree | 861dd472b17fc3f399c442fd0ea7932539fbbe9b /scumm | |
parent | eac128f0118314578a19faf4cdcfdca25ca8666f (diff) | |
download | scummvm-rg350-af78f4dfae1995c60e2743d702288559174d4230.tar.gz scummvm-rg350-af78f4dfae1995c60e2743d702288559174d4230.tar.bz2 scummvm-rg350-af78f4dfae1995c60e2743d702288559174d4230.zip |
Don't let Amiga and Platform options cancel each other out for Amiga support.
svn-id: r10029
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scummvm.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index d6efb51679..3c8772ae05 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -237,7 +237,8 @@ Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst) { switch (detector->_platform) { case 1: - detector->_game.features |= GF_AMIGA; + if (!(_features & GF_AMIGA)) + detector->_game.features |= GF_AMIGA; break; case 2: detector->_game.features |= GF_ATARI_ST; |