[Scummvm-git-logs] scummvm master -> 2a889baffc6927e04ecfa6010166d24c4bc75541
grisenti
noreply at scummvm.org
Mon Nov 27 21:14:03 UTC 2023
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:
2a889baffc HPL1: Engine does not support saving during runtime
Commit: 2a889baffc6927e04ecfa6010166d24c4bc75541
https://github.com/scummvm/scummvm/commit/2a889baffc6927e04ecfa6010166d24c4bc75541
Author: grisenti (emanuele at grisenti.net)
Date: 2023-11-27T22:13:43+01:00
Commit Message:
HPL1: Engine does not support saving during runtime
Changed paths:
engines/hpl1/hpl1.h
diff --git a/engines/hpl1/hpl1.h b/engines/hpl1/hpl1.h
index 186a475c134..8c9019c5562 100644
--- a/engines/hpl1/hpl1.h
+++ b/engines/hpl1/hpl1.h
@@ -78,7 +78,6 @@ public:
bool hasFeature(EngineFeature f) const override {
return (f == kSupportsLoadingDuringRuntime) ||
- (f == kSupportsSavingDuringRuntime) ||
(f == kSupportsReturnToLauncher) ||
(f == kSupportsArbitraryResolutions);
};
@@ -86,9 +85,6 @@ public:
bool canLoadGameStateCurrently() override {
return true;
}
- bool canSaveGameStateCurrently() override {
- return true;
- }
Common::String createSaveFile(const Common::String &internalName);
More information about the Scummvm-git-logs
mailing list