diff options
| author | JosJuice <josjuice@gmail.com> | 2018-10-19 18:45:59 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2018-10-19 18:45:59 +0200 |
| commit | 338f3467e50c160fca02090123e10fbc8d58e296 (patch) | |
| tree | de74cac3a520fbb3cbc9d5c1cd540f3fe09c2e5b /Source/Core/DiscIO/Enums.cpp | |
| parent | cffca7cbecef0043bd8312c27769e06c30ab67dc (diff) | |
DiscIO: Restore the Korean case in CountryCodeToCountry
I must've goofed or something last time I changed this.
Diffstat (limited to 'Source/Core/DiscIO/Enums.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Enums.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/Enums.cpp b/Source/Core/DiscIO/Enums.cpp index 043fd87ce0..e46ca238d0 100644 --- a/Source/Core/DiscIO/Enums.cpp +++ b/Source/Core/DiscIO/Enums.cpp @@ -266,6 +266,7 @@ Country CountryCodeToCountry(u8 country_code, Platform platform, Region region) case 'K': // Games in Korean released in Korea case 'Q': // NTSC-J games released on NTSC-K VC case 'T': // NTSC-U games released on NTSC-K VC + return Country::Korea; default: if (country_code > 'A') // Silently ignore IOS wads |
