mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
2020/08/18: Inchar - 汉化区域显示
This commit is contained in:
parent
bc0beebdbe
commit
dd07b06783
@ -9,13 +9,13 @@
|
|||||||
#define SMDH_ALL_REGIONS 0x7F
|
#define SMDH_ALL_REGIONS 0x7F
|
||||||
|
|
||||||
static const char* smdh_region_strings[SMDH_NUM_REGIONS] = {
|
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) {
|
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) {
|
if(region == 0) {
|
||||||
snprintf(out, size, "Unknown");
|
snprintf(out, size, "未知");
|
||||||
} else if((region & SMDH_ALL_REGIONS) == SMDH_ALL_REGIONS) {
|
} else if((region & SMDH_ALL_REGIONS) == SMDH_ALL_REGIONS) {
|
||||||
snprintf(out, size, "Region Free");
|
snprintf(out, size, "全區");
|
||||||
} else {
|
} else {
|
||||||
size_t pos = 0;
|
size_t pos = 0;
|
||||||
|
|
||||||
@ -70,4 +70,6 @@ SMDH_title* smdh_select_title(SMDH* smdh) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return &smdh->titles[systemLanguage];
|
return &smdh->titles[systemLanguage];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// オケー
|
Loading…
x
Reference in New Issue
Block a user