diff options
author | greggameplayer <33609333+greggameplayer@users.noreply.github.com> | 2018-05-26 04:31:54 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-05-26 04:31:54 +0200 |
commit | b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9 (patch) | |
tree | 35672c1565e13a34bef5908a73d9a654c4e836f6 /src/core/hle/service/am/am.h | |
parent | Merge pull request #466 from mailwl/nv-timeout (diff) | |
download | yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar.gz yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar.bz2 yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar.lz yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar.xz yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar.zst yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.zip |
Diffstat (limited to 'src/core/hle/service/am/am.h')
-rw-r--r-- | src/core/hle/service/am/am.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h index 5b3d416f3..dd6158eb2 100644 --- a/src/core/hle/service/am/am.h +++ b/src/core/hle/service/am/am.h @@ -18,10 +18,25 @@ class NVFlinger; namespace AM { -// TODO: Add more languages enum SystemLanguage { Japanese = 0, - English = 1, + English = 1, // en-US + French = 2, + German = 3, + Italian = 4, + Spanish = 5, + Chinese = 6, + Korean = 7, + Dutch = 8, + Portuguese = 9, + Russian = 10, + Taiwanese = 11, + BritishEnglish = 12, // en-GB + CanadianFrench = 13, + LatinAmericanSpanish = 14, // es-419 + // 4.0.0+ + SimplifiedChinese = 15, + TraditionalChinese = 16, }; class IWindowController final : public ServiceFramework<IWindowController> { |