Fix all uninitialized variable warnings (C26495)

This commit is contained in:
Pokechu22 2021-09-03 21:43:19 -07:00
parent 525e6b2194
commit 78bfd25964
111 changed files with 638 additions and 651 deletions

View file

@ -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;