aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/ivfc_archive.h
diff options
context:
space:
mode:
authorarchshift <gh@archshift.com>2015-10-18 15:52:37 -0700
committerarchshift <gh@archshift.com>2015-10-27 23:33:59 -0700
commit5dfd2dba70b15cead6358b40b980d5be1b32039e (patch)
treebda933874f35988982444c9e4e934fe64a6e0a9c /src/core/file_sys/ivfc_archive.h
parent04325e5980a649bea58aad349fc04eaf403aba3a (diff)
Implement FS_User::GetFreeBytes
Diffstat (limited to 'src/core/file_sys/ivfc_archive.h')
-rw-r--r--src/core/file_sys/ivfc_archive.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/file_sys/ivfc_archive.h b/src/core/file_sys/ivfc_archive.h
index c15a6c4ae..f3fd82de4 100644
--- a/src/core/file_sys/ivfc_archive.h
+++ b/src/core/file_sys/ivfc_archive.h
@@ -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;