summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeGC.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-05 23:05:26 -0400
committerLioncash <mathew1800@gmail.com>2015-09-05 23:05:28 -0400
commit4a2e680ed29b1a10f1020fa2bf9521086ebbdc32 (patch)
treece9c98d9ca6529a09dfed716fc1b4f5bc9c2d0b0 /Source/Core/DiscIO/VolumeGC.cpp
parent96e42dff52158c483f13e631d8f2df7f7b7ea4e6 (diff)
VolumeGC: Initialize a variable
Silences an uninitialized variable warning
Diffstat (limited to 'Source/Core/DiscIO/VolumeGC.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeGC.cpp2
1 files changed, 1 insertions, 1 deletions
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<IVolume::ELanguage, std::string> 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)