Skip to content

Commit

Permalink
Flashing of debug break message. (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiranDMC authored Oct 2, 2024
1 parent b0a772e commit 4dfbfb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cleo_plugins/DebugUtils/DebugUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ class DebugUtils
screenLog.Draw();

// draw active breakpoints list
if(!pausedScripts.empty())
if (!pausedScripts.empty() &&
(CTimer::m_FrameCounter & 0xE) != 0) // flashing
{
for (size_t i = 0; i < pausedScripts.size(); i++)
{
Expand Down

0 comments on commit 4dfbfb2

Please sign in to comment.