From d22477c6e2fac1f607f0d8c0fc0b45ef36356900 Mon Sep 17 00:00:00 2001 From: kunitoki Date: Thu, 9 May 2024 10:12:36 +0200 Subject: [PATCH] Improved timer responsiveness --- modules/juce_events/timers/juce_Timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_events/timers/juce_Timer.cpp b/modules/juce_events/timers/juce_Timer.cpp index b8733f05..2cf43139 100644 --- a/modules/juce_events/timers/juce_Timer.cpp +++ b/modules/juce_events/timers/juce_Timer.cpp @@ -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)); } }