diff options
| author | Subv <subv2112@gmail.com> | 2018-03-19 22:58:55 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2018-03-19 22:58:55 -0500 |
| commit | a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c (patch) | |
| tree | d31aeca8eacb374ab130dcd2449744cde2d5befd /src/core/file_sys/romfs_filesystem.h | |
| parent | fc44261dd1304c7dd1f38999a13ef9734c23b69a (diff) | |
FS: Updated the Directory Entry structure to match the Switch.
Diffstat (limited to 'src/core/file_sys/romfs_filesystem.h')
| -rw-r--r-- | src/core/file_sys/romfs_filesystem.h | 5 |
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 { |
