mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-21 04:49:14 +12:00
Implement SaveData::GetFreeBytes and BOSS GetTaskStatus
This commit is contained in:
parent
6552f2998c
commit
5f5ead6f55
3 changed files with 20 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue