summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/archive_savedata.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* FileSys: abstract SD save data archive sourcewwylele2016-11-291-5/+3
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-1/+0
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-1/+3
|
* HLE/FS: Implemented GetFormatInfoSubv2016-03-201-1/+3
| | | | Format information is currently only implemented for the ExtSaveData, SharedExtSaveData and SaveData archives, the information is stored in a file alongside the root folder of the archive.
* Core: Cleanup file_sys includes.Emmanuel Gil Peyrot2015-06-281-3/+4
|
* FS: Allow multiple instances of the same archive type to be open at onceYuri Kunde Schlesner2015-02-101-11/+6
|
* Archives: Implemented ExtSaveData and SharedExtSaveDataSubv2014-12-301-7/+12
| | | | | | | | They will be stored in /extsavedata/SDMC and /extsavedata/NAND respectively. Also redirect some APT_A functions to their APT_U equivalents. Implemented the gamecoin.dat file in SharedExtSaveData in the PTM module. Implemented formatting the savegame. Retake a previous savegame if it exists instead of reporting them as not formatted every time a game is loaded.
* License changepurpasmart962014-12-211-1/+1
|
* SaveData: Implemented the SystemSaveData archive.Subv2014-12-181-2/+1
| | | | It will be stored in the /syssavedata folder. This archive is user by various Services and possibly games via the FS:U service.
* Filesystem/Archives: Implemented the SaveData archiveSubv2014-12-181-0/+32
The savedata for each game is stored in /savedata/<ProgramID> for NCCH files. ELF files and 3DSX files use the folder 0 because they have no ID information Got rid of the code duplication in File and Directory Files that deal with the host machine's file system now live in DiskFile, similarly for directories and DiskDirectory and archives with DiskArchive. FS_U: Use the correct error code when a file wasn't found