summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/romfs_filesystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/file_sys/romfs_filesystem.h')
-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 {