diff options
| author | bunnei <bunneidev@gmail.com> | 2018-08-08 12:27:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-08 12:27:19 -0400 |
| commit | fd9da4232b2f989257630884511ba50e108ad703 (patch) | |
| tree | 0073d61bfa93a8ab0681623bf00428a5731b8854 /src/core/file_sys/control_metadata.h | |
| parent | 507e6ae1008aae528522206bd5cbbe31eed022d5 (diff) | |
| parent | 1abfd4166ee25354dd1b85b87fa7038fff420257 (diff) | |
Merge pull request #850 from DarkLordZach/icon-meta
Add Icons and Metadata Support
Diffstat (limited to 'src/core/file_sys/control_metadata.h')
| -rw-r--r-- | src/core/file_sys/control_metadata.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/file_sys/control_metadata.h b/src/core/file_sys/control_metadata.h index cc3b745f7..6582cc240 100644 --- a/src/core/file_sys/control_metadata.h +++ b/src/core/file_sys/control_metadata.h @@ -62,6 +62,13 @@ enum class Language : u8 { Chinese = 14, }; +static constexpr std::array<const char*, 15> LANGUAGE_NAMES = { + "AmericanEnglish", "BritishEnglish", "Japanese", + "French", "German", "LatinAmericanSpanish", + "Spanish", "Italian", "Dutch", + "CanadianFrench", "Portugese", "Russian", + "Korean", "Taiwanese", "Chinese"}; + // A class representing the format used by NX metadata files, typically named Control.nacp. // These store application name, dev name, title id, and other miscellaneous data. class NACP { |
