[Scummvm-git-logs] scummvm master -> ac93dd99fe5a151fde4dfe12c55eac9290643a5f
Tkachov
Tkachov at users.noreply.github.com
Wed Aug 31 08:49:31 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:
ac93dd99fe DC: Add RoninCDFileNode::create()
Commit: ac93dd99fe5a151fde4dfe12c55eac9290643a5f
https://github.com/scummvm/scummvm/commit/ac93dd99fe5a151fde4dfe12c55eac9290643a5f
Author: Alexander Tkachev (alexander at tkachov.ru)
Date: 2016-08-31T13:46:43+06:00
Commit Message:
DC: Add RoninCDFileNode::create()
Returns false, as we don't create files/directories on CD.
Changed paths:
backends/platform/dc/dc-fs.cpp
diff --git a/backends/platform/dc/dc-fs.cpp b/backends/platform/dc/dc-fs.cpp
index 77fe414..4bd7e5a 100644
--- a/backends/platform/dc/dc-fs.cpp
+++ b/backends/platform/dc/dc-fs.cpp
@@ -57,6 +57,7 @@ public:
virtual Common::SeekableReadStream *createReadStream();
virtual Common::WriteStream *createWriteStream() { return 0; }
+ virtual bool create(bool isDirectory) { return false; }
static AbstractFSNode *makeFileNodePath(const Common::String &path);
};
More information about the Scummvm-git-logs
mailing list