WS2812FX::service() fix for non-fastpath builds

This commit is contained in:
Frank
2024-11-05 18:50:22 +01:00
parent a2e9e77ca7
commit 7f3d43bc57

View File

@@ -1885,7 +1885,7 @@ void WS2812FX::service() {
#endif
}
#else // legacy
if (nowUp - _lastShow < MIN_SHOW_DELAY) return;
if (elapsed < _frametime) return;
#endif
bool doShow = false;