fix false fps reading

This commit is contained in:
2025-11-08 22:04:01 -07:00
parent 60758f3cb5
commit d9af87eb92
2 changed files with 9 additions and 7 deletions

View File

@@ -93,11 +93,6 @@ pub async fn display_handler(mut display: DISPLAY) {
};
}
#[cfg(feature = "fps")]
if unsafe { FPS_COUNTER.should_draw() } {
fps::draw_fps(&mut display).await;
}
// small yield to allow other tasks to run
Timer::after_millis(10).await;
}