summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/control_metadata.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* file_sys: Priority display of game titles in the current languageFengChen2022-10-241-3/+3
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* core: Remove unused includesameerj2021-11-041-1/+0
|
* file_sys: control_metadata: Add BrazilianPortugueseMorph2021-10-291-1/+2
|
* pctl: Rework how pctl works to be more accurateChloe Marcec2021-03-261-0/+2
| | | | Introduces the usage of compatibilities to allow it the module to be closer to how it works on hardware.
* control_metadata: Resolve typo in Portuguese language nameLioncash2020-09-171-1/+1
| | | | This isn't used anywhere, so this is a trivial fix.
* file_sys: Replace inclusions with forward declarations where applicableLioncash2020-08-231-1/+1
| | | | Same behavior, minus unnecessary inclusions where not necessary.
* file_sys: control_metadata: Expose device_save_data_size.bunnei2020-05-111-0/+1
|
* Impl'd IsUserAccountSwitchLocked, SetAudioOutVolume, GetAudioOutVolume & Partial impl of GetAccumulatedSuspendedTickChangedEventDavid Marcec2019-06-161-1/+3
| | | | IPC-100 was changed to InitializeApplicationInfoOld instead of InitializeApplicationInfo. IPC-150 makes an indentical call to IPC-100 however does extra processing. They should not have the same name as it's quite confusing to debug.
* Implement IApplicationFunctions::GetDesiredLanguageMichael Scire2019-05-231-0/+1
|
* file_sys/control_metadata: Amend naming of membersLioncash2019-04-041-9/+21
| | | | | | | | | | | Quite a bit of these were out of sync with Switchbrew (and in some cases entirely wrong). While we're at it, also expand the section of named members. A segment within the control metadata is used to specify maximum values for the user, device, and cache storage max sizes and journal sizes. These appear to be generally used by the am service (e.g. in CreateCacheStorage, etc).
* am: Implement GetSaveDataSize and ExtendSaveDataZach Hilman2018-12-271-1/+1
| | | These functions come in a pair and are needed by Smash Ultimate, Minecraft, and Skyrim, amongst others.
* control_metadata: Update NACP fields with latest Switchbrew dataZach Hilman2018-12-271-6/+21
|
* control_metadata: Use value member instead of unique_ptr to store structZach Hilman2018-12-271-1/+2
| | | Serves no actual purpose in this instance besides making NACP's copy assignment deleted, which is not intended behavior.
* control_metadata: Add GetRawBytes function to NACPZach Hilman2018-10-291-0/+1
| | | | Returns the raw bytes of the NACP file. Needed for GetApplicationControlData which returns the raw, unprocessed NACP to the game.
* aoc: Read DLC base title ID from RegisteredCacheZach Hilman2018-10-151-0/+1
| | | Falls back to title ID + 0x1000, which is what HOS does.
* 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: Move language name array definition to the cpp fileLioncash2018-09-201-6/+1
|/ | | | | | | 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-3/+6
|
* file_sys: Replace includes with forward declarations where applicableLioncash2018-09-041-0/+1
| | | | | Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
* control_metadata: Remove unnecessary reference to base fileZach Hilman2018-08-121-1/+0
|
* Use const where applicableZach Hilman2018-08-071-1/+1
|
* Avoid parsing RomFS to directory in NCAZach Hilman2018-08-071-0/+7
|
* NRO Assets and NACP file formatZach Hilman2018-07-231-0/+81
Cleanup Review fixes