summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/archive_savedata.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Core: Properly configure address space when loading a binaryYuri Kunde Schlesner2015-07-121-2/+2
| | | | | | The code now properly configures the process image to match the loaded binary segments (code, rodata, data) instead of just blindly allocating a large chunk of dummy memory.
* Core: Cleanup file_sys includes.Emmanuel Gil Peyrot2015-06-281-2/+1
|
* Common: Fix FileUtil includes, and everything relying on those.Emmanuel Gil Peyrot2015-06-281-0/+1
|
* Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot2015-05-291-1/+1
|
* Kernel: Remove g_program_idYuri Kunde Schlesner2015-05-091-2/+3
| | | | This has been obsoleted by the field in Process.
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-0/+1
|
* FS: Allow multiple instances of the same archive type to be open at onceYuri Kunde Schlesner2015-02-101-10/+13
|
* Archives: Addressed some commentsSubv2015-01-061-6/+6
|
* Archives: Make SYSTEM_ID and SDCARD_ID stringsSubv2015-01-041-1/+2
|
* Archives: Changed the way paths are built for the archives.Subv2015-01-041-2/+13
| | | | Each archive now takes a mount point of either NAND or SDMC, and builds its own directory structure there, trying to simulate an HLE-friendly hardware layout
* Archives: Implemented ExtSaveData and SharedExtSaveDataSubv2014-12-301-7/+18
| | | | | | | | 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.
* FileSys: Clean up according to the coding style, and remove redundant namespaced names.Emmanuel Gil Peyrot2014-12-241-1/+1
|
* License changepurpasmart962014-12-211-1/+1
|
* Filesystem/Archives: Implemented the SaveData archiveSubv2014-12-181-0/+33
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