Implement SaveData::GetFreeBytes and BOSS GetTaskStatus

This commit is contained in:
wheremyfoodat 2023-08-13 14:53:04 +03:00
parent 6552f2998c
commit 5f5ead6f55
3 changed files with 20 additions and 5 deletions

View file

@ -5,7 +5,7 @@ class SaveDataArchive : public ArchiveBase {
public:
SaveDataArchive(Memory& mem) : ArchiveBase(mem) {}
u64 getFreeBytes() override { Helpers::panic("SaveData::GetFreeBytes unimplemented"); return 0; }
u64 getFreeBytes() override { return 32_MB; }
std::string name() override { return "SaveData"; }
HorizonResult createDirectory(const FSPath& path) override;