summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp')
-rw-r--r--Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp
index 0b571e9502..a2b113f881 100644
--- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp
+++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp
@@ -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;