mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-01 07:52:37 +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
|
@ -35,10 +35,10 @@
|
|||
|
||||
struct CodeViewBranch
|
||||
{
|
||||
u32 src_addr;
|
||||
u32 dst_addr;
|
||||
u32 src_addr = 0;
|
||||
u32 dst_addr = 0;
|
||||
u32 indentation = 0;
|
||||
bool is_link;
|
||||
bool is_link = false;
|
||||
};
|
||||
|
||||
constexpr u32 WIDTH_PER_BRANCH_ARROW = 16;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue