diff options
author | Max Horn | 2004-10-07 20:55:22 +0000 |
---|---|---|
committer | Max Horn | 2004-10-07 20:55:22 +0000 |
commit | 2c5e42ca22909800531e33398a68adf29c479392 (patch) | |
tree | 05f71c1fbbff83491d3633f659a8a707c6654163 | |
parent | cd28cba36fabf5df76cc012e12804956ac8b7e6a (diff) | |
download | scummvm-rg350-2c5e42ca22909800531e33398a68adf29c479392.tar.gz scummvm-rg350-2c5e42ca22909800531e33398a68adf29c479392.tar.bz2 scummvm-rg350-2c5e42ca22909800531e33398a68adf29c479392.zip |
Fix for bug #1042509 (SNMDEMO not recognized)
svn-id: r15451
-rw-r--r-- | scumm/scumm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 666c2d8282..5796f9a905 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -167,7 +167,7 @@ static const ScummGameSettings scumm_settings[] = { {"samdemoMac", "Sam & Max (Mac Demo)", GID_SAMNMAX, 6, 0, /*MDT_PCSPK |*/ MDT_ADLIB | MDT_NATIVE, GF_NEW_OPCODES | GF_USE_KEY | GF_DRAWOBJ_OTHER_ORDER, "samdemo", "Sam & Max Demo Data"}, {"snmdemo", "Sam & Max (Demo)", GID_SAMNMAX, 6, 0, /*MDT_PCSPK |*/ MDT_ADLIB | MDT_NATIVE, - GF_NEW_OPCODES | GF_USE_KEY | GF_DRAWOBJ_OTHER_ORDER, 0, 0}, + GF_NEW_OPCODES | GF_USE_KEY | GF_DRAWOBJ_OTHER_ORDER, 0, "snmdemo.sm0"}, {"snmidemo", "Sam & Max (Interactive WIP Demo)", GID_SAMNMAX, 6, 0, /*MDT_PCSPK |*/ MDT_ADLIB | MDT_NATIVE, GF_NEW_OPCODES | GF_USE_KEY | GF_DRAWOBJ_OTHER_ORDER, 0, 0}, |