mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 15:48:51 +00:00
Fix all uninitialized variable warnings (C26495)
This commit is contained in:
parent
525e6b2194
commit
78bfd25964
111 changed files with 638 additions and 651 deletions
|
@ -173,17 +173,17 @@ struct CompressThreadState
|
|||
|
||||
struct CompressParameters
|
||||
{
|
||||
std::vector<u8> data;
|
||||
u32 block_number;
|
||||
u64 inpos;
|
||||
std::vector<u8> data{};
|
||||
u32 block_number = 0;
|
||||
u64 inpos = 0;
|
||||
};
|
||||
|
||||
struct OutputParameters
|
||||
{
|
||||
std::vector<u8> data;
|
||||
u32 block_number;
|
||||
bool compressed;
|
||||
u64 inpos;
|
||||
std::vector<u8> data{};
|
||||
u32 block_number = 0;
|
||||
bool compressed = false;
|
||||
u64 inpos = 0;
|
||||
};
|
||||
|
||||
static ConversionResultCode SetUpCompressThreadState(CompressThreadState* state)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue