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