mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
Fix all uninitialized variable warnings (C26495)
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user