summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/romfs_filesystem.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-03-20 04:58:55 +0100
committerSubv <subv2112@gmail.com>2018-03-20 04:58:55 +0100
commita9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c (patch)
treed31aeca8eacb374ab130dcd2449744cde2d5befd /src/core/file_sys/romfs_filesystem.h
parentFS: Support the file Append open mode. (diff)
downloadyuzu-a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c.tar
yuzu-a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c.tar.gz
yuzu-a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c.tar.bz2
yuzu-a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c.tar.lz
yuzu-a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c.tar.xz
yuzu-a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c.tar.zst
yuzu-a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/romfs_filesystem.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/file_sys/romfs_filesystem.h b/src/core/file_sys/romfs_filesystem.h
index cedd70645..be52f20ef 100644
--- a/src/core/file_sys/romfs_filesystem.h
+++ b/src/core/file_sys/romfs_filesystem.h
@@ -70,7 +70,10 @@ private:
class ROMFSDirectory : public DirectoryBackend {
public:
- u32 Read(const u32 count, Entry* entries) override {
+ u64 Read(const u64 count, Entry* entries) override {
+ return 0;
+ }
+ u64 GetEntryCount() const override {
return 0;
}
bool Close() const override {