mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
GUI: Fix mass add crash with older ScummVM configs
This commit is contained in:
parent
9bbdec165c
commit
80c750a0a4
@ -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)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user