Merge pull request #1235 from lioncash/func
VolumeGC: Use regular return type declaration for GetStringDecoder
This commit is contained in:
commit
67e44c0e63
|
@ -161,7 +161,7 @@ bool CVolumeGC::IsDiscTwo() const
|
||||||
return discTwo;
|
return discTwo;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto CVolumeGC::GetStringDecoder(ECountry country) -> StringDecoder
|
CVolumeGC::StringDecoder CVolumeGC::GetStringDecoder(ECountry country)
|
||||||
{
|
{
|
||||||
return (COUNTRY_JAPAN == country || COUNTRY_TAIWAN == country) ?
|
return (COUNTRY_JAPAN == country || COUNTRY_TAIWAN == country) ?
|
||||||
SHIFTJISToUTF8 : CP1252ToUTF8;
|
SHIFTJISToUTF8 : CP1252ToUTF8;
|
||||||
|
|
Loading…
Reference in New Issue