Set the Korean area as compatible with K region

This commit is contained in:
TheShadowEevee 2022-04-21 22:10:32 -05:00
parent 032a3a0d82
commit 1b70b1b739
No known key found for this signature in database
GPG Key ID: 7A8AA92B3BAFAB75
1 changed files with 2 additions and 1 deletions

View File

@ -227,7 +227,6 @@ char AREAtoSysMenuRegion(int area)
return 'J';
case 1:
case 4:
case 7:
case 8:
case 9:
case 10:
@ -236,6 +235,8 @@ char AREAtoSysMenuRegion(int area)
case 2:
case 3:
return 'E';
case 7:
return 'K';
default:
return 0;
}