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
|
@ -20,8 +20,8 @@ struct SCPFifoStruct
|
|||
// fifo registers
|
||||
std::atomic<u32> CPBase;
|
||||
std::atomic<u32> CPEnd;
|
||||
u32 CPHiWatermark;
|
||||
u32 CPLoWatermark;
|
||||
u32 CPHiWatermark = 0;
|
||||
u32 CPLoWatermark = 0;
|
||||
std::atomic<u32> CPReadWriteDistance;
|
||||
std::atomic<u32> CPWritePointer;
|
||||
std::atomic<u32> CPReadPointer;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue