[Scummvm-git-logs] scummvm master -> b8e0527c527398f0333571263cc0f2cf3d74e620
mduggan
mgithub at guarana.org
Sat May 9 05:54:55 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:
b8e0527c52 ULTIMA8: Fix detection of FR_FRA & DE_DEU from Gold Edition CD installs (#2233)
Commit: b8e0527c527398f0333571263cc0f2cf3d74e620
https://github.com/scummvm/scummvm/commit/b8e0527c527398f0333571263cc0f2cf3d74e620
Author: Matthew Jimenez (48367439+OMGPizzaGuy at users.noreply.github.com)
Date: 2020-05-09T14:54:52+09:00
Commit Message:
ULTIMA8: Fix detection of FR_FRA & DE_DEU from Gold Edition CD installs (#2233)
The English usecode file eusecode.flx was not included in the installs for French or German versions of the game when installed from the Gold Edition CD. The checksums remain the same for the language specific usecode.
Changed paths:
engines/ultima/detection_tables.h
diff --git a/engines/ultima/detection_tables.h b/engines/ultima/detection_tables.h
index 0542e578b1..d91aa700c3 100644
--- a/engines/ultima/detection_tables.h
+++ b/engines/ultima/detection_tables.h
@@ -186,11 +186,7 @@ static const UltimaGameDescription GAME_DESCRIPTIONS[] = {
{
"ultima8",
"Gold Edition",
- {
- { "eusecode.flx", 0, "c61f1dacde591cb39d452264e281f234", 1251108 },
- { "fusecode.flx", 0, "4017eb8678ee24af0ce8c7647a05509b", 1300957 },
- AD_LISTEND
- },
+ AD_ENTRY1s("fusecode.flx", "4017eb8678ee24af0ce8c7647a05509b", 1300957),
Common::FR_FRA,
Common::kPlatformDOS,
ADGF_UNSTABLE,
@@ -204,11 +200,7 @@ static const UltimaGameDescription GAME_DESCRIPTIONS[] = {
{
"ultima8",
"Gold Edition",
- {
- {"eusecode.flx", 0, "c61f1dacde591cb39d452264e281f234", 1251108},
- {"gusecode.flx", 0, "d69599a46870b66c1b7c02710ed185bd", 1378604},
- AD_LISTEND
- },
+ AD_ENTRY1s("gusecode.flx", "d69599a46870b66c1b7c02710ed185bd", 1378604),
Common::DE_DEU,
Common::kPlatformDOS,
ADGF_UNSTABLE,
More information about the Scummvm-git-logs
mailing list