Add SystemSaveData::CreateFile

This commit is contained in:
wheremyfoodat 2023-09-13 23:29:49 +03:00
parent 7c2167e0f2
commit 1332488326
3 changed files with 39 additions and 6 deletions

View file

@ -13,10 +13,7 @@ class SystemSaveDataArchive : public ArchiveBase {
std::string name() override { return "SystemSaveData"; }
//HorizonResult createDirectory(const FSPath& path) override;
HorizonResult createFile(const FSPath& path, u64 size) override {
Helpers::panic("Unimplemented CreateFile for SystemSaveData archive");
return Result::Success;
};
HorizonResult createFile(const FSPath& path, u64 size) override;
HorizonResult deleteFile(const FSPath& path) override {
Helpers::panic("Unimplemented DeleteFile for SystemSaveData archive");