AD: Fix type in constant name

This commit is contained in:
Eugene Sandulenko 2021-04-16 13:28:43 +02:00
parent f7ff451d17
commit 8339fbb9d9
No known key found for this signature in database
GPG key ID: 014D387312D34F08
2 changed files with 6 additions and 6 deletions

View file

@ -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;
}