WiiConfigPane: Handle switch cases explicitly

Gets rid of a warning on higher warning levels (switching on an enum type should handle cases explicitly)
This commit is contained in:
Lioncash 2015-05-11 06:35:42 -04:00
parent 7dc6728464
commit af2daf6c5c
1 changed files with 5 additions and 3 deletions

View File

@ -164,8 +164,10 @@ u8 WiiConfigPane::GetSADRCountryCode(DiscIO::IVolume::ELanguage language)
return 157; // China
case DiscIO::IVolume::LANGUAGE_KOREAN:
return 136; // Korea
default:
PanicAlert("Invalid language");
return 1;
case DiscIO::IVolume::LANGUAGE_UNKNOWN:
break;
}
PanicAlert("Invalid language. Defaulting to Japanese.");
return 1;
}