reduce startup time on ESP32

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-06-18 00:12:59 +02:00
parent df550540b8
commit 3ac9565007

View File

@@ -17,7 +17,7 @@ void SplashScreen::update(const uint64_t dt)
{ {
counter += dt; counter += dt;
#ifndef ESP32 #ifndef ESP32
if (counter > 200000) if (counter > 20)
#else #else
if (counter > 10) if (counter > 10)
#endif #endif