[Scummvm-git-logs] scummvm master -> 89672cb15bec6d4ee784a14292d45bc7b9c1f7a5
aquadran
noreply at scummvm.org
Wed Nov 6 21:14:47 UTC 2024
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:
89672cb15b GRIM: Fixes #12059. "Grim Fandango always overrides save game path."
Commit: 89672cb15bec6d4ee784a14292d45bc7b9c1f7a5
https://github.com/scummvm/scummvm/commit/89672cb15bec6d4ee784a14292d45bc7b9c1f7a5
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2024-11-06T22:14:42+01:00
Commit Message:
GRIM: Fixes #12059. "Grim Fandango always overrides save game path."
There is no reason storing back save path from engine.
Possible it was typo from syncing between read/write registry entries.
Changed paths:
engines/grim/registry.cpp
diff --git a/engines/grim/registry.cpp b/engines/grim/registry.cpp
index 69aecb83d56..a301a3a7ac8 100644
--- a/engines/grim/registry.cpp
+++ b/engines/grim/registry.cpp
@@ -294,7 +294,6 @@ void Registry::save() {
ConfMan.set("spew_on_error", _spewOnError.getString());
ConfMan.setPath("path", Common::Path(_dataPath.getString(), Common::Path::kNativeSeparator));
- ConfMan.setPath("savepath", Common::Path(_savePath.getString(), Common::Path::kNativeSeparator));
if (ConfMan.hasKey("last_set")) {
ConfMan.set("last_set", _lastSet.getString());
}
More information about the Scummvm-git-logs
mailing list