summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorflacs <tilkax@gmail.com>2015-08-30 05:47:33 +0200
committerflacs <tilkax@gmail.com>2015-08-30 05:47:33 +0200
commitcc5eb6d00b4b1e17addec73bd07b7d09c312da2e (patch)
tree83e4792bcb92326f2999ba0d95946ff35eccaa8d /Source
parent83a179b56a94bb673457910bad4e8448f8d19f99 (diff)
parent0390bd61dfccefc65c1276bc991470738bc8064c (diff)
Merge pull request #2927 from aserna3/workshop
Fixed introduced compiler warning in Linux
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinWX/ISOFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/ISOFile.cpp b/Source/Core/DolphinWX/ISOFile.cpp
index 4be36d6fd7..19246a0f0c 100644
--- a/Source/Core/DolphinWX/ISOFile.cpp
+++ b/Source/Core/DolphinWX/ISOFile.cpp
@@ -65,8 +65,8 @@ GameListItem::GameListItem(const std::string& _rFileName)
: m_FileName(_rFileName)
, m_emu_state(0)
, m_FileSize(0)
- , m_Revision(0)
, m_Country(DiscIO::IVolume::COUNTRY_UNKNOWN)
+ , m_Revision(0)
, m_Valid(false)
, m_BlobCompressed(false)
, m_ImageWidth(0)