summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/archive_ncch.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-12-22core: Remove HLE module, consolidate code & various cleanups.bunnei1-1/+1
2016-11-19FileSys: rename SaveDataCheck archive to NCCH archivewwylele1-11/+11
According to the observation from game and 3dbrew "Used for accessing general NCCH data"
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-3/+1
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner1-2/+1
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-7/+8
2016-04-05Common: Remove Common::make_unique, use std::make_uniqueMerryMage1-2/+2
2016-03-20HLE/FS: Implemented GetFormatInfoSubv1-1/+7
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.
2015-07-14FS: Stream RomFS from file instead of loading all of it to memorycondut1-7/+4
2015-06-28Core: Cleanup file_sys includes.Emmanuel Gil Peyrot1-0/+5
2015-06-28Common: Fix FileUtil includes, and everything relying on those.Emmanuel Gil Peyrot1-0/+1
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-0/+1
2015-02-10FS: Allow multiple instances of the same archive type to be open at onceYuri Kunde Schlesner1-13/+15
2015-01-06Archives: Addressed some commentsSubv1-4/+4
2015-01-05SaveDataCheck: Fixed a typoSubv1-1/+1
2015-01-04Archives: Make SYSTEM_ID and SDCARD_ID stringsSubv1-1/+1
2015-01-04Archives: Changed the way paths are built for the archives.Subv1-3/+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
2015-01-04SaveDataCheck: Move the files to nand/titleSubv1-1/+2
under /nand/title/high/low/content/00000000.app.romfs
2015-01-03Archives: Reduced duplicate code in RomFS and SaveCheck.Subv1-0/+41
Fixed a few warnings and cleaned up the code