Skip to content

Commit

Permalink
Improved timer responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
kunitoki committed May 9, 2024
1 parent ce341b1 commit d22477c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/juce_events/timers/juce_Timer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class Timer::TimerThread final : private Thread

// don't wait for too long because running this loop also helps keep the
// Time::getApproximateMillisecondTimer value stay up-to-date
wait (jlimit (1, 100, timeUntilFirstTimer));
wait (jlimit (1, 10, timeUntilFirstTimer));
}
}

Expand Down

0 comments on commit d22477c

Please sign in to comment.