diff options
author | Alexander Tkachev | 2016-05-25 16:49:17 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 17fc40a94436f970af75d6717c7a63c70eafcb12 (patch) | |
tree | 601c414c39ffa3b4ad66a91b58b6cb646a09c817 /backends/fs/psp | |
parent | ae8e7f39f5b3e4f647a29d39d19cce7626528bb1 (diff) | |
download | scummvm-rg350-17fc40a94436f970af75d6717c7a63c70eafcb12.tar.gz scummvm-rg350-17fc40a94436f970af75d6717c7a63c70eafcb12.tar.bz2 scummvm-rg350-17fc40a94436f970af75d6717c7a63c70eafcb12.zip |
CLOUD: Add AbstractFSNode::create() backends stubs
Diffstat (limited to 'backends/fs/psp')
-rw-r--r-- | backends/fs/psp/psp-fs.cpp | 5 | ||||
-rw-r--r-- | backends/fs/psp/psp-fs.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/backends/fs/psp/psp-fs.cpp b/backends/fs/psp/psp-fs.cpp index e8aad9fa98..6bd5e93435 100644 --- a/backends/fs/psp/psp-fs.cpp +++ b/backends/fs/psp/psp-fs.cpp @@ -239,4 +239,9 @@ Common::WriteStream *PSPFilesystemNode::createWriteStream() { return Common::wrapBufferedWriteStream(stream, WRITE_BUFFER_SIZE); } +bool PSPFilesystemNode::create(bool isDirectory) { + error("Not supported"); + return false; +} + #endif //#ifdef __PSP__ diff --git a/backends/fs/psp/psp-fs.h b/backends/fs/psp/psp-fs.h index 1bb4543d19..648544650b 100644 --- a/backends/fs/psp/psp-fs.h +++ b/backends/fs/psp/psp-fs.h @@ -65,6 +65,7 @@ public: virtual Common::SeekableReadStream *createReadStream(); virtual Common::WriteStream *createWriteStream(); + virtual bool create(bool isDirectory); }; #endif |