From 81798556dbd38fb829557cbe6a04132cc5edf75c Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 18 Feb 2006 00:12:36 +0000 Subject: - Removed the 'features' field from GameSettings - Removed GF_DEFAULT_TO_1X_SCALER svn-id: r20747 --- base/gameDetector.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'base/gameDetector.h') diff --git a/base/gameDetector.h b/base/gameDetector.h index 0d7ceb2b33..bdbb68bf90 100644 --- a/base/gameDetector.h +++ b/base/gameDetector.h @@ -34,17 +34,9 @@ namespace Audio { class Mixer; } -/** Global (shared) game feature flags. */ -enum { -// GF_HAS_SPEECH = 1 << 28, -// GF_HAS_SUBTITLES = 1 << 29, - GF_DEFAULT_TO_1X_SCALER = 1 << 30 -}; - struct GameSettings { const char *gameid; const char *description; // TODO: Rename this to "title" or so - uint32 features; // TODO: Probably should get rid of this field }; /** @@ -58,7 +50,7 @@ struct GameSettings { */ template GameSettings toGameSettings(const T &g) { - GameSettings dummy = { g.gameid, g.description, g.features }; + GameSettings dummy = { g.gameid, g.description }; return dummy; } -- cgit v1.2.3