GameDB: Still set save type and game name even if region didn't match but code did

This commit is contained in:
SimoneN64
2023-06-09 11:21:39 +02:00
parent 041dff5ee0
commit 2fa27ac73f

View File

@@ -24,6 +24,9 @@ void GameDB::match(Mem& mem) {
} else { } else {
Util::warn("Matched code for {}, but not region! Game supposedly exists in regions [{}] but this image has region {}", Util::warn("Matched code for {}, but not region! Game supposedly exists in regions [{}] but this image has region {}",
i.name, i.regions, rom.header.countryCode[0]); i.name, i.regions, rom.header.countryCode[0]);
mem.saveType = i.saveType;
mem.rom.gameNameDB = i.name;
return;
} }
} }
}); });