mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-30 02:19:10 +12:00
[FS] Cleanup, stub SDMC, start implementing SaveData
This commit is contained in:
parent
8cf55162d0
commit
b6a1da21a9
13 changed files with 135 additions and 15 deletions
src/core/fs
17
src/core/fs/archive_sdmc.cpp
Normal file
17
src/core/fs/archive_sdmc.cpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
#include "fs/archive_sdmc.hpp"
|
||||
#include <memory>
|
||||
|
||||
bool SDMCArchive::openFile(const FSPath& path) {
|
||||
printf("SDMCArchive::OpenFile: Failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
ArchiveBase* SDMCArchive::openArchive(const FSPath& path) {
|
||||
printf("SDMCArchive::OpenArchive: Failed");
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::optional<u32> SDMCArchive::readFile(FileSession* file, u64 offset, u32 size, u32 dataPointer) {
|
||||
printf("SDMCArchive::ReadFile: Failed");
|
||||
return std::nullopt;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue