aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/detection.cpp')
-rw-r--r--engines/sludge/detection.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/sludge/detection.cpp b/engines/sludge/detection.cpp
index e884d17074..b0c3ef24dd 100644
--- a/engines/sludge/detection.cpp
+++ b/engines/sludge/detection.cpp
@@ -30,11 +30,10 @@ namespace Sludge {
struct SludgeGameDescription {
ADGameDescription desc;
-
- int gameType;
+ uint languageID;
};
-int SludgeEngine::getGameType() const { return _gameDescription->gameType; }
+uint SludgeEngine::getLanguageID() const { return _gameDescription->languageID; }
const char *SludgeEngine::getGameId() const { return _gameDescription->desc.gameId;}
uint32 SludgeEngine::getFeatures() const { return _gameDescription->desc.flags; }
Common::Language SludgeEngine::getLanguage() const { return _gameDescription->desc.language; }