mirror of
https://github.com/citra-emu/citra.git
synced 2024-12-19 06:11:06 +00:00
Merge pull request #5282 from FearlessTobi/free-bytes-fix
savedata_archive: Make GetFreeBytes return a more accurate value
This commit is contained in:
commit
c937876935
@ -351,8 +351,8 @@ ResultVal<std::unique_ptr<DirectoryBackend>> SaveDataArchive::OpenDirectory(
|
|||||||
}
|
}
|
||||||
|
|
||||||
u64 SaveDataArchive::GetFreeBytes() const {
|
u64 SaveDataArchive::GetFreeBytes() const {
|
||||||
// TODO: Stubbed to return 1GiB
|
// TODO: Stubbed to return 32MiB
|
||||||
return 1024 * 1024 * 1024;
|
return 1024 * 1024 * 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace FileSys
|
} // namespace FileSys
|
||||||
|
Loading…
Reference in New Issue
Block a user