mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Fix VolumeVerifier considering Wii Menu WADs to have wrong region
This commit is contained in:
parent
533f6bfeb9
commit
0b11f15158
2 changed files with 8 additions and 1 deletions
|
@ -150,6 +150,9 @@ Region CountryCodeToRegion(u8 country_code, Platform platform, Region expected_r
|
|||
{
|
||||
switch (country_code)
|
||||
{
|
||||
case '\2':
|
||||
return expected_region; // Wii Menu (same title ID for all regions)
|
||||
|
||||
case 'J':
|
||||
return Region::NTSC_J;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue