[Scummvm-git-logs] scummvm master -> 1592610ac145ea4340533e9a2be091048fbad053
sev-
noreply at scummvm.org
Tue Jul 28 17:39:56 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
1592610ac1 KYRA: Fix loading kyra.dat for non-Korean languages. Fixes #17034
Commit: 1592610ac145ea4340533e9a2be091048fbad053
https://github.com/scummvm/scummvm/commit/1592610ac145ea4340533e9a2be091048fbad053
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-07-28T19:39:43+02:00
Commit Message:
KYRA: Fix loading kyra.dat for non-Korean languages. Fixes #17034
It was introduced in PR 7335, and when we do not load the override,
then we logic was missing the default language mapping altogether.
Changed paths:
engines/kyra/resource/staticres.cpp
diff --git a/engines/kyra/resource/staticres.cpp b/engines/kyra/resource/staticres.cpp
index b51c909c574..37778950da6 100644
--- a/engines/kyra/resource/staticres.cpp
+++ b/engines/kyra/resource/staticres.cpp
@@ -183,7 +183,9 @@ bool StaticResource::loadStaticResourceFile() {
}
break;
}
- } else if ((setLanguage(_vm->gameFlags().lang) && prefetchId(-1))) {
+ }
+
+ if ((setLanguage(_vm->gameFlags().lang) && prefetchId(-1))) {
foundWorkingKyraDat = true;
break;
}
More information about the Scummvm-git-logs
mailing list