diff options
Diffstat (limited to 'engines/lure/detection.cpp')
-rw-r--r-- | engines/lure/detection.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/lure/detection.cpp b/engines/lure/detection.cpp index 24338ee9a5..598a6454ff 100644 --- a/engines/lure/detection.cpp +++ b/engines/lure/detection.cpp @@ -45,12 +45,12 @@ Common::Platform LureEngine::getPlatform() const { return _gameDescription->desc LureLanguage LureEngine::getLureLanguage() const { switch (_gameDescription->desc.language) { - case IT_ITA: return LANG_IT_ITA; - case FR_FRA: return LANG_FR_FRA; - case DE_DEU: return LANG_DE_DEU; - case ES_ESP: return LANG_ES_ESP; - case EN_ANY: return LANG_EN_ANY; - case UNK_LANG: return LANG_UNKNOWN; + case Common::IT_ITA: return LANG_IT_ITA; + case Common::FR_FRA: return LANG_FR_FRA; + case Common::DE_DEU: return LANG_DE_DEU; + case Common::ES_ESP: return LANG_ES_ESP; + case Common::EN_ANY: return LANG_EN_ANY; + case Common::UNK_LANG: return LANG_UNKNOWN; default: error("Unknown game language"); } |