[Scummvm-git-logs] scummvm master -> 4ac44a8c12bec935a1e0f6a8df5a7abb0226bcae
mduggan
noreply at scummvm.org
Fri Aug 12 05:50:31 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:
4ac44a8c12 DEVTOOLS: Mark engine template functions as override
Commit: 4ac44a8c12bec935a1e0f6a8df5a7abb0226bcae
https://github.com/scummvm/scummvm/commit/4ac44a8c12bec935a1e0f6a8df5a7abb0226bcae
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2022-08-12T15:49:50+10:00
Commit Message:
DEVTOOLS: Mark engine template functions as override
Changed paths:
devtools/create_engine/files/xyzzy.h
diff --git a/devtools/create_engine/files/xyzzy.h b/devtools/create_engine/files/xyzzy.h
index 18c46aee124..971814428fb 100644
--- a/devtools/create_engine/files/xyzzy.h
+++ b/devtools/create_engine/files/xyzzy.h
@@ -87,11 +87,11 @@ public:
*/
Common::Error syncGame(Common::Serializer &s);
- Common::Error saveGameStream(Common::WriteStream *stream, bool isAutosave = false) {
+ Common::Error saveGameStream(Common::WriteStream *stream, bool isAutosave = false) override {
Common::Serializer s(nullptr, stream);
return syncGame(s);
}
- Common::Error loadGameStream(Common::SeekableReadStream *stream) {
+ Common::Error loadGameStream(Common::SeekableReadStream *stream) override {
Common::Serializer s(stream, nullptr);
return syncGame(s);
}
More information about the Scummvm-git-logs
mailing list