summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/registered_cache.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-5/+5
|
* bktr: Fix missing includes and optimize styleZach Hilman2018-09-041-10/+11
|
* registration: Add RegisteredCacheUnionZach Hilman2018-09-041-0/+114
| | | | Aggregates multiple caches into one interface
* main: Only show DRD deprecation warning onceZach Hilman2018-09-041-0/+1
|
* registration: Add support for installing NSP filesZach Hilman2018-09-041-8/+12
|
* file_sys: Replace includes with forward declarations where applicableLioncash2018-09-041-0/+3
| | | | | Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
* vfs_real: Forward declare IOFileLioncash2018-09-021-1/+1
| | | | | | Eliminates the need to rebuild some source files if the file_util header ever changes. This also uncovered some indirect inclusions, which have also been fixed.
* registered_cache: Get rid of variable shadowing in ProcessFiles()Lioncash2018-08-271-3/+3
| | | | Prevents compiler warnings.
* file_sys: Cut down on includes and copiesZach Hilman2018-08-231-0/+2
|
* registration: Add GetEntryUnparsed methodsZach Hilman2018-08-231-0/+12
| | | | Returns the file before calling parser on it.
* registration: Add Data_Unknown5 NCAContentTypeZach Hilman2018-08-201-1/+1
|
* filesystem: Add support for loading of system archivesZach Hilman2018-08-191-1/+2
|
* common: Namespace hex_util.h/.cppLioncash2018-08-161-8/+10
| | | | | It's in the common code, so it should be under the Common namespace like everything else.
* registration: Various style and documentation improvementsZach Hilman2018-08-121-5/+8
| | | | | | Fix logic in RealVfsFilesystem Create methods Remove magic numbers Fix regex errors
* registration: Add support for force overwrite of installedZach Hilman2018-08-121-17/+33
|
* registration: Update documentation and styleZach Hilman2018-08-121-7/+16
|
* registration: Take RawCopy function as parameterZach Hilman2018-08-121-7/+9
| | | | Instead of defaulting to VfsRawCopy
* registered_cache: Fix missing reading from yuzu_metaZach Hilman2018-08-121-7/+16
|
* file_sys: Comply to style guidelinesZach Hilman2018-08-121-11/+13
|
* qt: Add 'Install to NAND' option to menuZach Hilman2018-08-121-1/+1
| | | | Prompts for title type on NCA files.
* file_sys: Add RegisteredCacheZach Hilman2018-08-121-0/+435
Manages NAND NCA get and install.