WINTERMUTE: Fix for the new Serbian game

Added a missing check to fully support the new Serbian reversion1 release
This commit is contained in:
aviloria 2020-05-04 09:45:28 +02:00 committed by Eugene Sandulenko
parent 4c735979a6
commit 0c3ae8ae68

View File

@ -295,6 +295,11 @@ bool BaseFileManager::registerPackages() {
if (_language != Common::RU_RUS) {
continue;
}
// Serbian
} else if (fileName == "xlanguage_sr.dcp") {
if (_language != Common::SR_SER) {
continue;
}
// Spanish
} else if (fileName == "spanish.dcp" || fileName == "xlanguage_es.dcp" || fileName == "spanish_language_pack.dcp") {
if (_language != Common::ES_ESP) {