Starting work on (Shared)ExtSaveData archive

This commit is contained in:
wheremyfoodat 2023-01-07 03:30:32 +02:00
parent bbb62a83d0
commit 79c89f1f63
8 changed files with 48 additions and 7 deletions

View file

@ -2,11 +2,10 @@
#include "archive_base.hpp"
class SDMCArchive : public ArchiveBase {
public:
SDMCArchive(Memory& mem) : ArchiveBase(mem) {}
u64 getFreeBytes() override { return 0; }
u64 getFreeBytes() override { Helpers::panic("SDMC::GetFreeBytes unimplemented"); return 0; }
std::string name() override { return "SDMC"; }
bool openFile(const FSPath& path) override;