Implement FS_User::GetFreeBytes

This commit is contained in:
archshift 2015-10-18 15:52:37 -07:00
parent d52e81d425
commit 5da25ae7d0
8 changed files with 60 additions and 1 deletions

View file

@ -42,6 +42,7 @@ public:
bool CreateDirectory(const Path& path) const override;
bool RenameDirectory(const Path& src_path, const Path& dest_path) const override;
std::unique_ptr<DirectoryBackend> OpenDirectory(const Path& path) const override;
u64 GetFreeBytes() const override;
protected:
std::shared_ptr<FileUtil::IOFile> romfs_file;