aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/gp32/gp32-fs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/fs/gp32/gp32-fs.cpp')
-rw-r--r--backends/fs/gp32/gp32-fs.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/fs/gp32/gp32-fs.cpp b/backends/fs/gp32/gp32-fs.cpp
index ad92365a83..92968b5976 100644
--- a/backends/fs/gp32/gp32-fs.cpp
+++ b/backends/fs/gp32/gp32-fs.cpp
@@ -59,7 +59,9 @@ public:
virtual bool isDirectory() const { return _isDirectory; }
// FIXME: isValid should return false if this Node can't be used!
// so client code can rely on the return value.
+ virtual bool isReadable() const { return true; } //FIXME: this is just a stub
virtual bool isValid() const { return true; }
+ 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;