mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
DiscIO: fix -Wreorder warning
This commit is contained in:
parent
04b31e7eee
commit
bf5b1092b2
@ -603,9 +603,9 @@ WIARVZFileReader<RVZ>::Chunk::Chunk(File::IOFile* file, u64 offset_in_file, u64
|
|||||||
u64 decompressed_size, u32 exception_lists,
|
u64 decompressed_size, u32 exception_lists,
|
||||||
bool compressed_exception_lists, u32 rvz_packed_size,
|
bool compressed_exception_lists, u32 rvz_packed_size,
|
||||||
u64 data_offset, std::unique_ptr<Decompressor> decompressor)
|
u64 data_offset, std::unique_ptr<Decompressor> decompressor)
|
||||||
: m_file(file), m_offset_in_file(offset_in_file), m_exception_lists(exception_lists),
|
: m_decompressor(std::move(decompressor)), m_file(file), m_offset_in_file(offset_in_file),
|
||||||
m_compressed_exception_lists(compressed_exception_lists), m_rvz_packed_size(rvz_packed_size),
|
m_exception_lists(exception_lists), m_compressed_exception_lists(compressed_exception_lists),
|
||||||
m_data_offset(data_offset), m_decompressor(std::move(decompressor))
|
m_rvz_packed_size(rvz_packed_size), m_data_offset(data_offset)
|
||||||
{
|
{
|
||||||
constexpr size_t MAX_SIZE_PER_EXCEPTION_LIST =
|
constexpr size_t MAX_SIZE_PER_EXCEPTION_LIST =
|
||||||
Common::AlignUp(VolumeWii::BLOCK_HEADER_SIZE, sizeof(SHA1)) / sizeof(SHA1) *
|
Common::AlignUp(VolumeWii::BLOCK_HEADER_SIZE, sizeof(SHA1)) / sizeof(SHA1) *
|
||||||
|
Loading…
x
Reference in New Issue
Block a user