From 4a2e680ed29b1a10f1020fa2bf9521086ebbdc32 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 5 Sep 2015 23:05:26 -0400 Subject: [PATCH] VolumeGC: Initialize a variable Silences an uninitialized variable warning --- 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 f6b4c6ae64..3e1044c42a 100644 --- a/Source/Core/DiscIO/VolumeGC.cpp +++ b/Source/Core/DiscIO/VolumeGC.cpp @@ -249,7 +249,7 @@ std::map CVolumeGC::ReadMultiLanguageStrings(bo return strings; u32 number_of_languages = 0; - ELanguage start_language; + ELanguage start_language = LANGUAGE_UNKNOWN; bool is_japanese = GetCountry() == ECountry::COUNTRY_JAPAN; switch (m_banner_file_type)