[Scummvm-git-logs] scummvm master -> 2e92f432bec2187b9db670955440e3c60f2e060c
dreammaster
dreammaster at scummvm.org
Fri Sep 23 02:35:04 CEST 2016
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:
2e92f432be XEEN: Hopefully fix compiler warnings about hidden virtual methods
Commit: 2e92f432bec2187b9db670955440e3c60f2e060c
https://github.com/scummvm/scummvm/commit/2e92f432bec2187b9db670955440e3c60f2e060c
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-09-22T20:34:52-04:00
Commit Message:
XEEN: Hopefully fix compiler warnings about hidden virtual methods
Changed paths:
engines/xeen/files.h
diff --git a/engines/xeen/files.h b/engines/xeen/files.h
index 4e9e196..d73eb28 100644
--- a/engines/xeen/files.h
+++ b/engines/xeen/files.h
@@ -109,6 +109,20 @@ public:
*/
virtual bool open(const Common::String &filename, Common::Archive &archive);
+ /**
+ * Opens the given file
+ */
+ virtual bool open(const Common::FSNode &node) {
+ return Common::File::open(node);
+ }
+
+ /**
+ * Opens the given file
+ */
+ virtual bool open(SeekableReadStream *stream, const Common::String &name) {
+ return Common::File::open(stream, name);
+ }
+
Common::String readString();
};
More information about the Scummvm-git-logs
mailing list