Skip to content

Commit 4dfbfb2

Browse files
authored
Flashing of debug break message. (#220)
1 parent b0a772e commit 4dfbfb2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cleo_plugins/DebugUtils/DebugUtils.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ class DebugUtils
9797
screenLog.Draw();
9898

9999
// draw active breakpoints list
100-
if(!pausedScripts.empty())
100+
if (!pausedScripts.empty() &&
101+
(CTimer::m_FrameCounter & 0xE) != 0) // flashing
101102
{
102103
for (size_t i = 0; i < pausedScripts.size(); i++)
103104
{

0 commit comments

Comments
 (0)