summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/set/set.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-29 02:29:33 +0200
committerbunnei <bunneidev@gmail.com>2018-04-29 17:07:06 +0200
commit17b16cf6f6a9b6eb9c552837860c6e1b39986f95 (patch)
tree730897a94bfa1b136bf6d726a16e6a1bf787a254 /src/core/hle/service/set/set.h
parentMerge pull request #414 from lioncash/cruft (diff)
downloadyuzu-17b16cf6f6a9b6eb9c552837860c6e1b39986f95.tar
yuzu-17b16cf6f6a9b6eb9c552837860c6e1b39986f95.tar.gz
yuzu-17b16cf6f6a9b6eb9c552837860c6e1b39986f95.tar.bz2
yuzu-17b16cf6f6a9b6eb9c552837860c6e1b39986f95.tar.lz
yuzu-17b16cf6f6a9b6eb9c552837860c6e1b39986f95.tar.xz
yuzu-17b16cf6f6a9b6eb9c552837860c6e1b39986f95.tar.zst
yuzu-17b16cf6f6a9b6eb9c552837860c6e1b39986f95.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/set/set.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/core/hle/service/set/set.h b/src/core/hle/service/set/set.h
index 6a465949f..ec0df0152 100644
--- a/src/core/hle/service/set/set.h
+++ b/src/core/hle/service/set/set.h
@@ -8,6 +8,27 @@
namespace Service::Set {
+/// This is "nn::settings::LanguageCode", which is a NUL-terminated string stored in a u64.
+enum class LanguageCode : u64 {
+ JA = 0x000000000000616A,
+ EN_US = 0x00000053552D6E65,
+ FR = 0x0000000000007266,
+ DE = 0x0000000000006564,
+ IT = 0x0000000000007469,
+ ES = 0x0000000000007365,
+ ZH_CN = 0x0000004E432D687A,
+ KO = 0x0000000000006F6B,
+ NL = 0x0000000000006C6E,
+ PT = 0x0000000000007470,
+ RU = 0x0000000000007572,
+ ZH_TW = 0x00000057542D687A,
+ EN_GB = 0x00000042472D6E65,
+ FR_CA = 0x00000041432D7266,
+ ES_419 = 0x00003931342D7365,
+ ZH_HANS = 0x00736E61482D687A,
+ ZH_HANT = 0x00746E61482D687A,
+};
+
class SET final : public ServiceFramework<SET> {
public:
explicit SET();