mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 20:49:12 +12:00
Starting work on (Shared)ExtSaveData archive
This commit is contained in:
parent
bbb62a83d0
commit
79c89f1f63
8 changed files with 48 additions and 7 deletions
17
src/core/fs/archive_ext_save_data.cpp
Normal file
17
src/core/fs/archive_ext_save_data.cpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
#include "fs/archive_ext_save_data.hpp"
|
||||
#include <memory>
|
||||
|
||||
bool ExtSaveDataArchive::openFile(const FSPath& path) {
|
||||
Helpers::panic("ExtSaveDataArchive::OpenFile: Failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
ArchiveBase* ExtSaveDataArchive::openArchive(const FSPath& path) {
|
||||
Helpers::panic("ExtSaveDataArchive::OpenArchive: Failed. Path type: %d", path.type);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::optional<u32> ExtSaveDataArchive::readFile(FileSession* file, u64 offset, u32 size, u32 dataPointer) {
|
||||
Helpers::panic("ExtSaveDataArchive::ReadFile: Failed");
|
||||
return std::nullopt;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue