[Scummvm-git-logs] scummvm master -> 0c3ae8ae68907b9ef9166e04e1bf4542d8640be0

sev- sev at scummvm.org
Mon May 4 11:41:15 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
0c3ae8ae68 WINTERMUTE: Fix for the new Serbian game


Commit: 0c3ae8ae68907b9ef9166e04e1bf4542d8640be0
    https://github.com/scummvm/scummvm/commit/0c3ae8ae68907b9ef9166e04e1bf4542d8640be0
Author: aviloria (aviloria at yahoo.com)
Date: 2020-05-04T13:41:11+02:00

Commit Message:
WINTERMUTE: Fix for the new Serbian game

Added a missing check to fully support the new Serbian reversion1 release

Changed paths:
    engines/wintermute/base/base_file_manager.cpp


diff --git a/engines/wintermute/base/base_file_manager.cpp b/engines/wintermute/base/base_file_manager.cpp
index 6be5f1d3b6..09c04e0c50 100644
--- a/engines/wintermute/base/base_file_manager.cpp
+++ b/engines/wintermute/base/base_file_manager.cpp
@@ -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) {




More information about the Scummvm-git-logs mailing list