mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-05 18:41:12 +00:00
WINTERMUTE: Fix for the new Serbian game
Added a missing check to fully support the new Serbian reversion1 release
This commit is contained in:
parent
4c735979a6
commit
0c3ae8ae68
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user