mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-12 22:57:47 +00:00
Implement FS_User::GetFreeBytes
This commit is contained in:
parent
d52e81d425
commit
5da25ae7d0
8 changed files with 60 additions and 1 deletions
|
@ -74,6 +74,11 @@ std::unique_ptr<DirectoryBackend> DiskArchive::OpenDirectory(const Path& path) c
|
|||
return std::move(directory);
|
||||
}
|
||||
|
||||
u64 DiskArchive::GetFreeBytes() const {
|
||||
// TODO: Stubbed to return 1GiB
|
||||
return 1024 * 1024 * 1024;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
DiskFile::DiskFile(const DiskArchive& archive, const Path& path, const Mode mode) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue