From 6cfa5798703369dfa385ed1ade7b8f4d9a5918ba Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 7 Oct 2014 21:15:14 -0400 Subject: [PATCH] VolumeGC: Use regular return type declaration for GetStringDecoder --- Source/Core/DiscIO/VolumeGC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DiscIO/VolumeGC.cpp b/Source/Core/DiscIO/VolumeGC.cpp index 05ccd4264c..ef0e56a21d 100644 --- a/Source/Core/DiscIO/VolumeGC.cpp +++ b/Source/Core/DiscIO/VolumeGC.cpp @@ -161,7 +161,7 @@ bool CVolumeGC::IsDiscTwo() const return discTwo; } -auto CVolumeGC::GetStringDecoder(ECountry country) -> StringDecoder +CVolumeGC::StringDecoder CVolumeGC::GetStringDecoder(ECountry country) { return (COUNTRY_JAPAN == country || COUNTRY_TAIWAN == country) ? SHIFTJISToUTF8 : CP1252ToUTF8;