Korean support (#290)

* Update themes.c

Addes KOR in dump themes

* Update fs.c

Added Kor support usable with This patch: https://github.com/ZeroSkill1/CTR-Hacking/tree/master/General-Hacking/Korean%20HOME%20Menu%20Theme%20Patch
This commit is contained in:
cooolgamer
2024-02-26 19:05:52 +01:00
committed by GitHub
parent 3fa73ee291
commit 67fc17dddf
2 changed files with 11 additions and 1 deletions

View File

@@ -64,6 +64,10 @@ Result open_archives(void)
archive1 = 0x000002ce; archive1 = 0x000002ce;
archive2 = 0x00000098; archive2 = 0x00000098;
break; break;
case 5:
archive1 = 0x000002cf;
archive2 = 0x000000a9;
break;
default: default:
archive1 = 0x00; archive1 = 0x00;
archive2 = 0x00; archive2 = 0x00;

View File

@@ -445,15 +445,21 @@ Result dump_all_themes(void)
case CFG_REGION_EUR: case CFG_REGION_EUR:
low_id = 0x00009800; low_id = 0x00009800;
break; break;
case CFG_REGION_KOR:
low_id = 0x0000a900;
break;
default: default:
return -1; return -1;
} }
const char* region_arr[4] = { const char* region_arr[7] = {
"JPN", "JPN",
"USA", "USA",
"EUR", "EUR",
"AUS", "AUS",
"CHN",
"KOR",
"TWN",
}; };
const char* language_arr[12] = { const char* language_arr[12] = {