AD: Fix type in constant name
This commit is contained in:
parent
f7ff451d17
commit
8339fbb9d9
2 changed files with 6 additions and 6 deletions
|
@ -182,7 +182,7 @@ DetectedGame AdvancedMetaEngineDetection::toDetectedGame(const ADDetectedGame &a
|
|||
else if (desc->flags & ADGF_TESTING)
|
||||
game.gameSupportLevel = kTestingGame;
|
||||
else if (desc->flags & ADGF_UNSUPPORTED)
|
||||
game.gameSupportLevel = kUnupportedGame;
|
||||
game.gameSupportLevel = kUnsupportedGame;
|
||||
|
||||
game.setGUIOptions(desc->guiOptions + _guiOptions);
|
||||
game.appendGUIOptions(getGameGUIOptionsDescriptionLanguage(desc->language));
|
||||
|
@ -381,7 +381,7 @@ Common::Error AdvancedMetaEngineDetection::createInstance(OSystem *syst, Engine
|
|||
&& !Engine::warnUserAboutUnsupportedGame())
|
||||
return Common::kUserCanceled;
|
||||
|
||||
if (gameDescriptor.gameSupportLevel == kUnupportedGame) {
|
||||
if (gameDescriptor.gameSupportLevel == kUnsupportedGame) {
|
||||
Engine::errorUnsupportedGame(gameDescriptor.extra);
|
||||
return Common::kUserCanceled;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue