summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/control_metadata.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1364 from lioncash/contentbunnei2018-09-211-0/+2
|\ | | | | file-sys: Default heavy-weight class destructors in the cpp file
| * file-sys: Default heavy-weight class destructors in the cpp fileLioncash2018-09-201-0/+2
| | | | | | | | | | | | | | | | | | | | 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.
* | control_metadata: Remove unnecessary else within GetLanguageEntry()Lioncash2018-09-201-8/+8
| | | | | | | | | | There's no need to indent the code here, given the if case contains a return statement at the end of it.
* | control_metadata: Move language name array definition to the cpp fileLioncash2018-09-201-0/+8
|/ | | | | | | This was used in two different translation units (deconstructed_rom_directory and patch_manager). This means we'd be pointlessly duplicating the whole array twice due to it being defined within the header.
* control_metadata: Use alternate language names if AmericanEnglish isn't availableZach Hilman2018-09-041-1/+11
|
* control_metadata: Remove unnecessary reference to base fileZach Hilman2018-08-121-1/+1
|
* NRO Assets and NACP file formatZach Hilman2018-07-231-0/+42
Cleanup Review fixes