Update K system menu region number

This commit is contained in:
TheShadowEevee 2022-05-05 06:58:36 -05:00
parent 3d6066f046
commit c4511d0e2e
No known key found for this signature in database
GPG Key ID: 7A8AA92B3BAFAB75

View File

@ -81,6 +81,7 @@ void draw_credits()
Console_SetPosition(26, 20); Console_SetPosition(26, 20);
printf("Press Any Button To Return ..... "); printf("Press Any Button To Return ..... ");
} }
void Draw_Disclaimer() void Draw_Disclaimer()
{ {
ClearScreen(); ClearScreen();
@ -102,6 +103,7 @@ void Draw_Disclaimer()
printf("\n\n\n\n\t\t\t\t[A] Continue [Home] Exit\n"); printf("\n\n\n\n\t\t\t\t[A] Continue [Home] Exit\n");
wait_key(WPAD_BUTTON_A); wait_key(WPAD_BUTTON_A);
} }
void handleError(const char *string, int errorval) void handleError(const char *string, int errorval)
{ {
printf("Unexpected Error: %s Value: %d\n", string, errorval); printf("Unexpected Error: %s Value: %d\n", string, errorval);
@ -434,7 +436,7 @@ int main(int argc, char **argv)
video = 1; video = 1;
country = 110; country = 110;
} }
else if (sysmenu_region == 255) else if (sysmenu_region == 75)
{ // KOR { // KOR
lang = 1; lang = 1;
area = 7; area = 7;
@ -442,6 +444,13 @@ int main(int argc, char **argv)
video = 0; video = 0;
country = 136; country = 136;
} }
else
{
printf("\nUnknown System Menu region \"%u\".\n", sysmenu_region);
printf("Press any key to quit\n");
wait_anyKey();
exit(0);
}
saveSettings(); saveSettings();
break; break;
case 9: case 9: