change order of determineMode() checks

This commit is contained in:
Todd Herbert
2024-03-10 03:38:39 +13:00
parent efd818fe90
commit 95b6f27d2a
2 changed files with 18 additions and 18 deletions

View File

@@ -73,8 +73,8 @@ class EInkDynamicDisplay : public EInkDisplay
void checkRateLimiting(); // Is this frame too soon?
void checkCosmetic(); // Was the COSMETIC flag set?
void checkDemandingFast(); // Was the DEMAND_FAST flag set?
void checkConsecutiveFastRefreshes(); // Too many fast-refreshes consecutively?
void checkFrameMatchesPrevious(); // Does the new frame match the existing display image?
void checkConsecutiveFastRefreshes(); // Too many fast-refreshes consecutively?
void checkFastRequested(); // Was the flag set for RESPONSIVE, or only BACKGROUND?
void resetRateLimiting(); // Set previousRunMs - this now counts as an update, for rate-limiting