diff options
author | Max Horn | 2006-05-26 08:20:15 +0000 |
---|---|---|
committer | Max Horn | 2006-05-26 08:20:15 +0000 |
commit | 003504272565235710a9f742c8763d13182cca5f (patch) | |
tree | a2c80eb773937bd7c4e63c8c98012fc54d297df5 /engines | |
parent | 9477029a443ff1592958cb09eccfae95ac83ec2d (diff) | |
download | scummvm-rg350-003504272565235710a9f742c8763d13182cca5f.tar.gz scummvm-rg350-003504272565235710a9f742c8763d13182cca5f.tar.bz2 scummvm-rg350-003504272565235710a9f742c8763d13182cca5f.zip |
Fix for bug #1495361 (MONKEY1 AMIGA: Error at gamedetection)
svn-id: r22648
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/plugin.cpp b/engines/scumm/plugin.cpp index f08804e982..442d63572d 100644 --- a/engines/scumm/plugin.cpp +++ b/engines/scumm/plugin.cpp @@ -228,7 +228,7 @@ static const GameSettings gameVariantsTable[] = { {"pass", 0, GID_PASS, 4, 0, MDT_PCSPK | MDT_ADLIB, GF_SMALL_HEADER | GF_USE_KEY | GF_16COLOR, Common::kPlatformPC}, - {"monkey", "VGA", GID_MONKEY_VGA, 4, 0, MDT_PCSPK | MDT_ADLIB | MDT_MIDI, GF_SMALL_HEADER | GF_USE_KEY, Common::kPlatformPC}, + {"monkey", "VGA", GID_MONKEY_VGA, 4, 0, MDT_PCSPK | MDT_ADLIB | MDT_MIDI, GF_SMALL_HEADER | GF_USE_KEY, UNK}, {"monkey", "EGA", GID_MONKEY_EGA, 4, 0, MDT_PCSPK | MDT_ADLIB | MDT_MIDI, GF_SMALL_HEADER | GF_USE_KEY | GF_16COLOR, Common::kPlatformPC}, {"monkey", "No Adlib", GID_MONKEY_EGA, 4, 0, MDT_PCSPK, GF_SMALL_HEADER | GF_USE_KEY | GF_16COLOR, Common::kPlatformAtariST}, {"monkey", "Demo", GID_MONKEY_EGA, 4, 0, MDT_PCSPK | MDT_ADLIB, GF_SMALL_HEADER | GF_USE_KEY | GF_16COLOR, Common::kPlatformPC}, |