Skip to content

Commit

Permalink
GameDatabase: Make unknown controller types non-fatal
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Sep 26, 2022
1 parent 9d27f70 commit 4668334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/game_database.cpp
Expand Up @@ -829,7 +829,7 @@ bool GameDatabase::ParseJsonEntry(Entry* entry, const rapidjson::Value& value)
if (!ctype.has_value())
{
Log_WarningPrintf("Invalid controller type '%s'", controller.GetString());
return false;
continue;
}

if (first)
Expand Down

0 comments on commit 4668334

Please sign in to comment.