Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10313 from JosJuice/android-coverhelper-region
Android: Fix country constants in CoverHelper.getRegion
  • Loading branch information
lioncash committed Dec 31, 2021
2 parents 88f89ea + 014cc02 commit c216057
Showing 1 changed file with 14 additions and 8 deletions.
Expand Up @@ -33,22 +33,28 @@ public static String getRegion(GameFile game)
case 2: // PAL
switch (game.getCountry())
{
case 2: // German
region = "DE";
case 3: // Australia
region = "AU";
break;
case 3: // French
case 4: // France
region = "FR";
break;
case 4: // Spanish
region = "ES";
case 5: // Germany
region = "DE";
break;
case 5: // Italian
case 6: // Italy
region = "IT";
break;
case 6: // Dutch
case 8: // Netherlands
region = "NL";
break;
case 1: // English
case 9: // Russia
region = "RU";
break;
case 10: // Spain
region = "ES";
break;
case 0: // Europe
default:
region = "EN";
break;
Expand Down

0 comments on commit c216057

Please sign in to comment.