aboutsummaryrefslogtreecommitdiff
path: root/engines/simon
diff options
context:
space:
mode:
authorMax Horn2006-02-18 00:12:36 +0000
committerMax Horn2006-02-18 00:12:36 +0000
commit81798556dbd38fb829557cbe6a04132cc5edf75c (patch)
treed2925b35cfc31dfaadd8e7cc3f98c5299d91f964 /engines/simon
parentd13950dab2d5c0465f823e20fc8ab26b72b89ecc (diff)
downloadscummvm-rg350-81798556dbd38fb829557cbe6a04132cc5edf75c.tar.gz
scummvm-rg350-81798556dbd38fb829557cbe6a04132cc5edf75c.tar.bz2
scummvm-rg350-81798556dbd38fb829557cbe6a04132cc5edf75c.zip
- Removed the 'features' field from GameSettings
- Removed GF_DEFAULT_TO_1X_SCALER svn-id: r20747
Diffstat (limited to 'engines/simon')
-rw-r--r--engines/simon/simon.cpp36
-rw-r--r--engines/simon/simon.h2
2 files changed, 19 insertions, 19 deletions
diff --git a/engines/simon/simon.cpp b/engines/simon/simon.cpp
index ba8bb58dcb..2ef92cb3e1 100644
--- a/engines/simon/simon.cpp
+++ b/engines/simon/simon.cpp
@@ -57,7 +57,7 @@ struct ObsoleteTargets {
Common::Platform platform;
GameSettings toGameSettings() const {
- GameSettings dummy = { from, "Obsolete Target", 0 };
+ GameSettings dummy = { from, "Obsolete Target" };
return dummy;
}
};
@@ -83,23 +83,23 @@ static ObsoleteTargets obsoleteTargetsTable[] = {
static const GameSettings simonGames[] = {
// Simon the Sorcerer 1 & 2 (not SCUMM games)
- {"feeble", "The Feeble Files", 0},
- {"simon1", "Simon the Sorcerer 1", 0},
- {"simon2", "Simon the Sorcerer 2", 0},
-
- {"simon1acorn", "Simon the Sorcerer 1 (Acorn)", 0},
- {"simon1amiga", "Simon the Sorcerer 1 (Amiga)", 0},
- {"simon1cd32", "Simon the Sorcerer 1 Talkie (Amiga CD32)", 0},
- {"simon1demo", "Simon the Sorcerer 1 (DOS Demo)", 0},
- {"simon1dos", "Simon the Sorcerer 1 (DOS)", 0},
- {"simon1talkie", "Simon the Sorcerer 1 Talkie", 0},
- {"simon1win", "Simon the Sorcerer 1 Talkie (Windows)", 0},
- {"simon2dos", "Simon the Sorcerer 2 (DOS)", 0},
- {"simon2talkie", "Simon the Sorcerer 2 Talkie", 0},
- {"simon2win", "Simon the Sorcerer 2 Talkie (Windows)", 0},
- {"simon2mac", "Simon the Sorcerer 2 Talkie (Amiga or Mac)", 0},
-
- {NULL, NULL, 0}
+ {"feeble", "The Feeble Files"},
+ {"simon1", "Simon the Sorcerer 1"},
+ {"simon2", "Simon the Sorcerer 2"},
+
+ {"simon1acorn", "Simon the Sorcerer 1 (Acorn)"},
+ {"simon1amiga", "Simon the Sorcerer 1 (Amiga)"},
+ {"simon1cd32", "Simon the Sorcerer 1 Talkie (Amiga CD32)"},
+ {"simon1demo", "Simon the Sorcerer 1 (DOS Demo)"},
+ {"simon1dos", "Simon the Sorcerer 1 (DOS)"},
+ {"simon1talkie", "Simon the Sorcerer 1 Talkie"},
+ {"simon1win", "Simon the Sorcerer 1 Talkie (Windows)"},
+ {"simon2dos", "Simon the Sorcerer 2 (DOS)"},
+ {"simon2talkie", "Simon the Sorcerer 2 Talkie"},
+ {"simon2win", "Simon the Sorcerer 2 Talkie (Windows)"},
+ {"simon2mac", "Simon the Sorcerer 2 Talkie (Amiga or Mac)"},
+
+ {NULL, NULL}
};
GameList Engine_SIMON_gameList() {
diff --git a/engines/simon/simon.h b/engines/simon/simon.h
index c2b58f03b6..1c0e2a1c84 100644
--- a/engines/simon/simon.h
+++ b/engines/simon/simon.h
@@ -128,7 +128,7 @@ struct GameDescription {
Common::Platform platform;
GameSettings toGameSettings() const {
- GameSettings dummy = { name, title, features };
+ GameSettings dummy = { name, title };
return dummy;
}
};