mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +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
|
@ -298,10 +298,10 @@ static std::map<double, int> GetSavedStates()
|
|||
|
||||
struct CompressAndDumpState_args
|
||||
{
|
||||
std::vector<u8>* buffer_vector;
|
||||
std::mutex* buffer_mutex;
|
||||
std::vector<u8>* buffer_vector = nullptr;
|
||||
std::mutex* buffer_mutex = nullptr;
|
||||
std::string filename;
|
||||
bool wait;
|
||||
bool wait = false;
|
||||
};
|
||||
|
||||
static void CompressAndDumpState(CompressAndDumpState_args save_args)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue