mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
VolumeGC: Use regular return type declaration for GetStringDecoder
This commit is contained in:
parent
ab49d80e3f
commit
6cfa579870
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue