GUI: Fix mass add crash with older ScummVM configs

This commit is contained in:
Eugene Sandulenko 2022-09-02 14:30:44 +02:00
parent 9bbdec165c
commit 80c750a0a4

View File

@ -210,8 +210,8 @@ void MassAddDialog::handleTickle() {
// If the engineid, gameid, platform and language match -> skip it
Common::ConfigManager::Domain *dom = ConfMan.getDomain(*iter);
assert(dom);
if ((*dom)["engineid"] == result.engineId &&
if ((!dom->contains("engineid") || (*dom)["engineid"] == result.engineId) &&
(*dom)["gameid"] == result.gameId &&
dom->getValOrDefault("platform") == resultPlatformCode &&
parseLanguage(dom->getValOrDefault("language")) == parseLanguage(resultLanguageCode)) {