summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/control_metadata.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-07-28 18:32:16 +0200
committerZach Hilman <zachhilman@gmail.com>2018-08-07 05:06:33 +0200
commit9e88f03e7591bd3b91d7af9b9995a727c0b92ac9 (patch)
treedf8fb8701e41ac8ea525fe23b6b13e057e41d0b8 /src/core/file_sys/control_metadata.h
parentMerge pull request #931 from DarkLordZach/nca-as-drd (diff)
downloadyuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar
yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar.gz
yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar.bz2
yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar.lz
yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar.xz
yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar.zst
yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/control_metadata.h7
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..9fc02612a 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 std::array<std::string, 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 {