diff options
| author | facugaich <facugaich@gmail.com> | 2009-09-01 18:34:26 +0000 |
|---|---|---|
| committer | facugaich <facugaich@gmail.com> | 2009-09-01 18:34:26 +0000 |
| commit | c247805b28ff13cdfc8c417202d277c440bddf28 (patch) | |
| tree | f652e1902d6a313582b521740e2ac61ca9c2d0dc /Source/Core/DiscIO/Src/NANDContentLoader.cpp | |
| parent | 6168ab75c64025ddad2e7cbafdb6df0720389c6b (diff) | |
Linux: Fixed some initialization orders
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4143 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/NANDContentLoader.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/NANDContentLoader.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DiscIO/Src/NANDContentLoader.cpp b/Source/Core/DiscIO/Src/NANDContentLoader.cpp index 943d567fda..012b660501 100644 --- a/Source/Core/DiscIO/Src/NANDContentLoader.cpp +++ b/Source/Core/DiscIO/Src/NANDContentLoader.cpp @@ -149,10 +149,10 @@ private: CNANDContentLoader::CNANDContentLoader(const std::string& _rName) - : m_TitleID(-1) - , m_BootIndex(-1) - , m_Valid(false) + : m_Valid(false) + , m_TitleID(-1) , m_IosVersion(0x09) + , m_BootIndex(-1) { if (File::IsDirectory(_rName.c_str())) { |
