aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/detection_tables.h
diff options
context:
space:
mode:
authorTravis Howell2007-12-27 11:40:29 +0000
committerTravis Howell2007-12-27 11:40:29 +0000
commit410a4a974ef78324ba6d8bd5535b2b46b231b0f7 (patch)
tree0d51afe35658e4b7d880d8a495a2760b958b43ff /engines/scumm/detection_tables.h
parent1bafd03a698130c21c222edb0bc011fc39a6e003 (diff)
downloadscummvm-rg350-410a4a974ef78324ba6d8bd5535b2b46b231b0f7.tar.gz
scummvm-rg350-410a4a974ef78324ba6d8bd5535b2b46b231b0f7.tar.bz2
scummvm-rg350-410a4a974ef78324ba6d8bd5535b2b46b231b0f7.zip
Enable Windows version of early HE games by default, to match already enabled 3DO/DOS/Macintosh versions of early HE games. Adding only the minimum code required for HE70 games.
svn-id: r30011
Diffstat (limited to 'engines/scumm/detection_tables.h')
-rw-r--r--engines/scumm/detection_tables.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/engines/scumm/detection_tables.h b/engines/scumm/detection_tables.h
index 1d47de29ed..3190be2b85 100644
--- a/engines/scumm/detection_tables.h
+++ b/engines/scumm/detection_tables.h
@@ -73,6 +73,7 @@ static const PlainGameDescriptor gameDescriptions[] = {
{ "comi", "The Curse of Monkey Island" },
#endif
+ { "activity", "Putt-Putt & Fatty Bear's Activity Pack" },
{ "brstorm", "Bear Stormin'" },
{ "fbear", "Fatty Bear's Birthday Surprise" },
{ "fbpack", "Fatty Bear's Fun Pack" },
@@ -81,7 +82,6 @@ static const PlainGameDescriptor gameDescriptions[] = {
{ "puttputt", "Putt-Putt Joins the Parade" },
#ifndef DISABLE_HE
- { "activity", "Putt-Putt & Fatty Bear's Activity Pack" },
{ "airport", "Let's Explore the Airport with Buzzy" },
{ "arttime", "Blue's Art Time Activities" },
{ "balloon", "Putt-Putt and Pep's Balloon-O-Rama" },
@@ -245,6 +245,7 @@ static const GameSettings gameVariantsTable[] = {
{"brstorm", 0, 0, GID_FBEAR, 6, 61, MDT_ADLIB | MDT_MIDI, GF_USE_KEY, UNK},
{"fbear", "HE 61", 0, GID_FBEAR, 6, 61, MDT_ADLIB | MDT_MIDI, GF_USE_KEY, UNK},
+ {"fbear", "HE 70", 0, GID_FBEAR, 6, 70, MDT_NONE, GF_USE_KEY, Common::kPlatformWindows},
{"puttmoon", "", 0, GID_HEGAME, 6, 61, MDT_ADLIB | MDT_MIDI, GF_USE_KEY, UNK},
@@ -252,10 +253,12 @@ static const GameSettings gameVariantsTable[] = {
{"puttputt", "HE 60", 0, GID_HEGAME, 6, 60, MDT_ADLIB | MDT_MIDI, GF_USE_KEY, Common::kPlatformPC},
{"puttputt", "Demo", 0, GID_PUTTDEMO, 6, 60, MDT_ADLIB | MDT_MIDI, GF_USE_KEY, UNK},
-#ifndef DISABLE_HE
- // Humongous Entertainment Scumm Version 7.0
- {"fbear", "HE 70", 0, GID_FBEAR, 6, 70, MDT_NONE, GF_USE_KEY, Common::kPlatformWindows},
+ // The following are meant to be generic HE game variants and as such do
+ // not specify a game ID. Make sure that these are last in the table, else
+ // they'll override more specific entries that follow later on.
+ {"", "HE 70", 0, GID_HEGAME, 6, 70, MDT_NONE, GF_USE_KEY, UNK},
+#ifndef DISABLE_HE
// HE CUP demos
{"", "HE CUP", 0, GID_HECUP, 6, 200, MDT_NONE, 0, UNK},
@@ -354,7 +357,6 @@ static const GameSettings gameVariantsTable[] = {
// The following are meant to be generic HE game variants and as such do
// not specify a game ID. Make sure that these are last in the table, else
// they'll override more specific entries that follow later on.
- {"", "HE 70", 0, GID_HEGAME, 6, 70, MDT_NONE, GF_USE_KEY, UNK},
{"", "HE 71", 0, GID_HEGAME, 6, 71, MDT_NONE, GF_USE_KEY, UNK},
{"", "HE 72", 0, GID_HEGAME, 6, 72, MDT_NONE, GF_USE_KEY, UNK},
{"", "HE 73", 0, GID_HEGAME, 6, 73, MDT_NONE, GF_USE_KEY, UNK},