summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/content_archive.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-3/+3
|
* bktr: Fix bucket overlap errorZach Hilman2018-09-041-3/+0
|
* nsp: Fix error masking issue with XCI filesZach Hilman2018-09-041-2/+6
| | | | Now display correct error instead of catch-all MissingProgramNCA
* bktr: Implement IVFC offset shiftingZach Hilman2018-09-041-4/+9
| | | | Fixes base game read errors
* content_archive: Add BKTR header parsing to NCAZach Hilman2018-09-041-15/+156
|
* file_sys: Replace includes with forward declarations where applicableLioncash2018-09-041-0/+4
| | | | | Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
* content_archive: Add update title detectionZach Hilman2018-08-241-0/+8
| | | | This is needed because the title IDs of update NCAs will not use the update title ID. The only sure way to tell is to look for a partition with BKTR crypto.
* xts_encryption_layer: Implement XTSEncryptionLayerZach Hilman2018-08-231-1/+1
|
* loader: Add more descriptive errorsZach Hilman2018-08-101-16/+70
| | | Full list of new errors and descriptions in core/loader/loader.h
* Merge pull request #850 from DarkLordZach/icon-metabunnei2018-08-081-0/+4
|\ | | | | Add Icons and Metadata Support
| * loader: Add icon and title support to XCIZach Hilman2018-08-071-0/+4
| |
* | content_archive: Add support for titlekey cryptographyZach Hilman2018-08-041-7/+37
|/
* Add missing parameter to files.push_back()Zach Hilman2018-08-011-5/+5
|
* Use more descriptive error codes and messagesZach Hilman2018-08-011-2/+8
|
* Use ErrorEncrypted where applicable and fix no keys crashZach Hilman2018-08-011-15/+30
|
* Add missing includes and use const where applicableZach Hilman2018-08-011-2/+2
|
* Make XCI comply to review and style guidelinesZach Hilman2018-08-011-30/+18
|
* Remove files that are not usedZach Hilman2018-08-011-30/+138
|
* RomFS ExtractionZach Hilman2018-07-281-15/+4
|
* content_archive: std::move VirtualFile in NCA's constructorLioncash2018-07-191-1/+4
| | | | | Gets rid of unnecessary atomic reference count incrementing and decrementing.
* Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman2018-07-191-0/+167
| | | | | | | | | | * Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression
* Revert "Virtual Filesystem (#597)"bunnei2018-07-081-164/+0
| | | | This reverts commit 77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.
* Virtual Filesystem (#597)Zach Hilman2018-07-061-0/+164
* Add VfsFile and VfsDirectory classes * Finish abstract Vfs classes * Implement RealVfsFile (computer fs backend) * Finish RealVfsFile and RealVfsDirectory * Finished OffsetVfsFile * More changes * Fix import paths * Major refactor * Remove double const * Use experimental/filesystem or filesystem depending on compiler * Port partition_filesystem * More changes * More Overhaul * FSP_SRV fixes * Fixes and testing * Try to get filesystem to compile * Filesystem on linux * Remove std::filesystem and document/test * Compile fixes * Missing include * Bug fixes * Fixes * Rename v_file and v_dir * clang-format fix * Rename NGLOG_* to LOG_* * Most review changes * Fix TODO * Guess 'main' to be Directory by filename