diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2020-07-24 16:44:35 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2020-07-24 17:41:37 +0100 |
| commit | bf5b1092b238940b046ca26a71dfeba80e8aea80 (patch) | |
| tree | decd1dbf8be1ce23590facaa80afdbacb783fa22 /Source/Core | |
| parent | 04b31e7eeec5a7a0b6b561ca00a59fa25ba3dea2 (diff) | |
DiscIO: fix -Wreorder warning
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DiscIO/WIABlob.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DiscIO/WIABlob.cpp b/Source/Core/DiscIO/WIABlob.cpp index 4886ceaf7c..e1e9ecb543 100644 --- a/Source/Core/DiscIO/WIABlob.cpp +++ b/Source/Core/DiscIO/WIABlob.cpp @@ -603,9 +603,9 @@ WIARVZFileReader<RVZ>::Chunk::Chunk(File::IOFile* file, u64 offset_in_file, u64 u64 decompressed_size, u32 exception_lists, bool compressed_exception_lists, u32 rvz_packed_size, u64 data_offset, std::unique_ptr<Decompressor> decompressor) - : m_file(file), m_offset_in_file(offset_in_file), m_exception_lists(exception_lists), - m_compressed_exception_lists(compressed_exception_lists), m_rvz_packed_size(rvz_packed_size), - m_data_offset(data_offset), m_decompressor(std::move(decompressor)) + : m_decompressor(std::move(decompressor)), m_file(file), m_offset_in_file(offset_in_file), + m_exception_lists(exception_lists), m_compressed_exception_lists(compressed_exception_lists), + m_rvz_packed_size(rvz_packed_size), m_data_offset(data_offset) { constexpr size_t MAX_SIZE_PER_EXCEPTION_LIST = Common::AlignUp(VolumeWii::BLOCK_HEADER_SIZE, sizeof(SHA1)) / sizeof(SHA1) * |
