Skip to content

Commit

Permalink
Merge pull request #2399 from Tilka/fix_warning
Browse files Browse the repository at this point in the history
Fix -Wswitch warning
  • Loading branch information
degasus committed May 11, 2015
2 parents 294629f + cdf6d18 commit 7dc6728
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Core/DolphinWX/Config/WiiConfigPane.cpp
Expand Up @@ -164,8 +164,8 @@ u8 WiiConfigPane::GetSADRCountryCode(DiscIO::IVolume::ELanguage language)
return 157; // China
case DiscIO::IVolume::LANGUAGE_KOREAN:
return 136; // Korea
default:
PanicAlert("Invalid language");
return 1;
}

PanicAlert("Invalid language");
return 1;
}

0 comments on commit 7dc6728

Please sign in to comment.