[Scummvm-git-logs] scummvm master -> e0164196241b938f643c65ae8d10cd2e3a1b7c75
AndywinXp
noreply at scummvm.org
Mon Nov 14 22:59:59 UTC 2022
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:
e016419624 SCUMM: FT/DIG: Fix dialog fonts when loading very old savegames
Commit: e0164196241b938f643c65ae8d10cd2e3a1b7c75
https://github.com/scummvm/scummvm/commit/e0164196241b938f643c65ae8d10cd2e3a1b7c75
Author: AndywinXp (andywinxp at gmail.com)
Date: 2022-11-14T23:59:53+01:00
Commit Message:
SCUMM: FT/DIG: Fix dialog fonts when loading very old savegames
Thanks dwatteau for finding this!
Changed paths:
engines/scumm/saveload.cpp
diff --git a/engines/scumm/saveload.cpp b/engines/scumm/saveload.cpp
index 008a48a4d8c..8bcb6773399 100644
--- a/engines/scumm/saveload.cpp
+++ b/engines/scumm/saveload.cpp
@@ -1987,7 +1987,7 @@ void ScummEngine_v7::saveLoadWithSerializer(Common::Serializer &s) {
if (s.getVersion() <= VER(68) && s.isLoading()) {
// WORKAROUND bug #3483: Reset the default charset color to a sane value.
- _string[0]._default.charset = 1;
+ _string[0]._default.charset = _game.version == 7 ? 2 : 1;
}
// The original Save/Load screen for COMI saves a heap savegame when it is entered
More information about the Scummvm-git-logs
mailing list