[Scummvm-git-logs] scummvm master -> 30d5fecfb009d254234efe04081f2416abb499ea
sdelamarre
noreply at scummvm.org
Sat Jan 17 19:21:31 UTC 2026
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
acab46a23c GOB: use FR_CAN for French Canadian Adibou2 variant
30d5fecfb0 GOB: add FR_CAN to TranslationDatabases::setLanguage()
Commit: acab46a23c0b3cdeb74c62513b7b489d93641516
https://github.com/scummvm/scummvm/commit/acab46a23c0b3cdeb74c62513b7b489d93641516
Author: Benjamin Funke (58399929+BJNFNE at users.noreply.github.com)
Date: 2026-01-17T20:21:27+01:00
Commit Message:
GOB: use FR_CAN for French Canadian Adibou2 variant
Use correct langcode for French Candian Adibou2 variant
Changed paths:
engines/gob/detection/tables_adibou2.h
diff --git a/engines/gob/detection/tables_adibou2.h b/engines/gob/detection/tables_adibou2.h
index c9dee72116a..859e9001f3b 100644
--- a/engines/gob/detection/tables_adibou2.h
+++ b/engines/gob/detection/tables_adibou2.h
@@ -123,7 +123,7 @@
AD_ENTRY3s("intro.stk", "1e49c39a4a3ce6032a84b712539c2d63", 8738134,
"BECBF212.CD1", "bc828c320908a5eaa349956d396bd8e1", 8,
"intro.itk", "269fc5814db277b5a18d748e7ed55e90", 15079424),
- FR_FRA, // Canadian French
+ FR_CAN,
kPlatformWindows,
GF_ENABLE_ADIBOU2_FREE_BANANAS_WORKAROUND | GF_ENABLE_ADIBOU2_FLOWERS_INFINITE_LOOP_WORKAROUND,
GUIO0()
Commit: 30d5fecfb009d254234efe04081f2416abb499ea
https://github.com/scummvm/scummvm/commit/30d5fecfb009d254234efe04081f2416abb499ea
Author: Benjamin Funke (58399929+BJNFNE at users.noreply.github.com)
Date: 2026-01-17T20:21:27+01:00
Commit Message:
GOB: add FR_CAN to TranslationDatabases::setLanguage()
Add FR_CAN to TranslationDatabases::set
Language() to display for the new langc
ode the text in game properly.
Changed paths:
engines/gob/databases.cpp
diff --git a/engines/gob/databases.cpp b/engines/gob/databases.cpp
index 7495b5c7c11..e43e5c4cd56 100644
--- a/engines/gob/databases.cpp
+++ b/engines/gob/databases.cpp
@@ -56,6 +56,8 @@ void TranslationDatabases::setLanguage(Common::Language language) {
lang = "G";
else if (language == Common::FR_FRA)
lang = "F";
+ else if (language == Common::FR_CAN)
+ lang = "F";
else
warning("TranslationDatabases::setLanguage(): Language \"%s\" not supported",
Common::getLanguageDescription(language));
More information about the Scummvm-git-logs
mailing list