summaryrefslogtreecommitdiff
path: root/src/video_core/debug_utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r--src/video_core/debug_utils/debug_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h
index 9382a75e5..08356f103 100644
--- a/src/video_core/debug_utils/debug_utils.h
+++ b/src/video_core/debug_utils/debug_utils.h
@@ -141,8 +141,8 @@ public:
141 } 141 }
142 142
143 // TODO: Evaluate if access to these members should be hidden behind a public interface. 143 // TODO: Evaluate if access to these members should be hidden behind a public interface.
144 std::array<BreakPoint, (int)Event::NumEvents> breakpoints; 144 std::array<BreakPoint, static_cast<int>(Event::NumEvents)> breakpoints;
145 Event active_breakpoint; 145 Event active_breakpoint{};
146 bool at_breakpoint = false; 146 bool at_breakpoint = false;
147 147
148private: 148private: