summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/ns_language.cpp
diff options
context:
space:
mode:
authorMichael Scire <SciresM@gmail.com>2019-05-23 10:14:11 +0200
committerMichael Scire <SciresM@gmail.com>2019-05-23 10:14:11 +0200
commit7fba9c7224d6a2bd358777e8854fa51232b54017 (patch)
treebae400349914cdc3ad455e2d77d4e4ce92d901ad /src/core/hle/service/ns/ns_language.cpp
parentImplement IApplicationFunctions::GetDesiredLanguage (diff)
downloadyuzu-7fba9c7224d6a2bd358777e8854fa51232b54017.tar
yuzu-7fba9c7224d6a2bd358777e8854fa51232b54017.tar.gz
yuzu-7fba9c7224d6a2bd358777e8854fa51232b54017.tar.bz2
yuzu-7fba9c7224d6a2bd358777e8854fa51232b54017.tar.lz
yuzu-7fba9c7224d6a2bd358777e8854fa51232b54017.tar.xz
yuzu-7fba9c7224d6a2bd358777e8854fa51232b54017.tar.zst
yuzu-7fba9c7224d6a2bd358777e8854fa51232b54017.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/ns_language.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/ns/ns_language.cpp b/src/core/hle/service/ns/ns_language.cpp
index cce9098b4..fa95e75da 100644
--- a/src/core/hle/service/ns/ns_language.cpp
+++ b/src/core/hle/service/ns/ns_language.cpp
@@ -276,7 +276,8 @@ constexpr ApplicationLanguagePriorityList priority_list_simplified_chinese = {{
ApplicationLanguage::Korean,
}};
-const ApplicationLanguagePriorityList* GetApplicationLanguagePriorityList(ApplicationLanguage lang) {
+const ApplicationLanguagePriorityList* GetApplicationLanguagePriorityList(
+ ApplicationLanguage lang) {
switch (lang) {
case ApplicationLanguage::AmericanEnglish:
return &priority_list_american_english;