summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/submission_package.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* submission_package: Ensure the 'extracted' member variable is always initializedLioncash2018-10-031-1/+1
| | | | | | | | If an error occurs when constructing the PartitionFilesystem instance, the constructor would be exited early, which wouldn't initialize the extracted data member, making it possible for other code to perform an uninitialized read by calling the public IsExtractedType() member function. This prevents that.
* submission_package: Move ExeFS and RomFS initialization to its own functionLioncash2018-10-031-0/+1
| | | | | | | | | | Like the other two bits of factored out code, this can also be put within its own function. We can also modify the code so that it accepts a const reference to a std::vector of files, this way, we can deduplicate the file retrieval. Now the constructor for NSP isn't a combination of multiple behaviors in one spot. It's nice and separate.
* submission_package: Move NCA reading code to its own functionLioncash2018-10-031-0/+2
| | | | | | This too, is completely separate behavior from what is in the constructor, so we can move this to its own isolated function to keep everything self-contained.
* file-sys: Default heavy-weight class destructors in the cpp fileLioncash2018-09-201-1/+1
| | | | | | | | | | Several classes have a lot of non-trivial members within them, or don't but likely should have the destructor defaulted in the cpp file for future-proofing/being more friendly to forward declarations. Leaving the destructor unspecified allows the compiler to inline the destruction code all over the place, which is generally undesirable from a code bloat perspective.
* file_sys/submission_package: Replace includes with forward declarations where applicableLioncash2018-09-051-5/+8
|
* main: Only show DRD deprecation warning onceZach Hilman2018-09-041-1/+2
|
* nsp: Comply with style and performance guidelinesZach Hilman2018-09-041-0/+2
|
* file_sys: Add Nintendo Submission Package (NSP)Zach Hilman2018-09-041-0/+70