From dd07b0678325fcdfe9724aafe3d42ba9f0a39ef5 Mon Sep 17 00:00:00 2001 From: Rintim Date: Tue, 18 Aug 2020 19:30:57 +0800 Subject: [PATCH] =?UTF-8?q?2020/08/18:=20Inchar=20-=20=E6=B1=89=E5=8C=96?= =?UTF-8?q?=E5=8C=BA=E5=9F=9F=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/core/data/smdh.c | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/source/core/data/smdh.c b/source/core/data/smdh.c index 01363cb..7a2ea9b 100644 --- a/source/core/data/smdh.c +++ b/source/core/data/smdh.c @@ -9,13 +9,13 @@ #define SMDH_ALL_REGIONS 0x7F static const char* smdh_region_strings[SMDH_NUM_REGIONS] = { - "Japan", - "North America", - "Europe", - "Australia", - "China", - "Korea", - "Taiwan" + "日本", + "北美洲", + "歐洲", + "澳大利亞", + "中國", + "韓國", + "中國臺灣" }; void smdh_region_to_string(char* out, u32 region, size_t size) { @@ -24,9 +24,9 @@ void smdh_region_to_string(char* out, u32 region, size_t size) { } if(region == 0) { - snprintf(out, size, "Unknown"); + snprintf(out, size, "未知"); } else if((region & SMDH_ALL_REGIONS) == SMDH_ALL_REGIONS) { - snprintf(out, size, "Region Free"); + snprintf(out, size, "全區"); } else { size_t pos = 0; @@ -70,4 +70,6 @@ SMDH_title* smdh_select_title(SMDH* smdh) { } return &smdh->titles[systemLanguage]; -} \ No newline at end of file +} + +// オケー \ No newline at end of file