aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/psp/psp_fs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/fs/psp/psp_fs.cpp')
-rw-r--r--backends/fs/psp/psp_fs.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/fs/psp/psp_fs.cpp b/backends/fs/psp/psp_fs.cpp
index 079df64dcb..5b0faf3847 100644
--- a/backends/fs/psp/psp_fs.cpp
+++ b/backends/fs/psp/psp_fs.cpp
@@ -58,11 +58,14 @@ public:
*/
PSPFilesystemNode(const Common::String &p, bool verify);
+ virtual bool exists() const { return true; } //FIXME: this is just a stub
virtual String getDisplayName() const { return _displayName; }
virtual String getName() const { return _displayName; }
virtual String getPath() const { return _path; }
virtual bool isDirectory() const { return _isDirectory; }
+ virtual bool isReadable() const { return true; } //FIXME: this is just a stub
virtual bool isValid() const { return _isValid; }
+ virtual bool isWritable() const { return true; } //FIXME: this is just a stub
virtual AbstractFilesystemNode *getChild(const String &n) const;
virtual bool getChildren(AbstractFSList &list, ListMode mode) const;