From b64678cff3d2a5ccbc0b2064312576db8746e2ea Mon Sep 17 00:00:00 2001 From: Victoria Fischer Date: Sun, 7 Dec 2025 14:55:33 +0100 Subject: [PATCH] tasks: oled: update to new nullbufferpool syntax --- src/tasks/oled.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tasks/oled.rs b/src/tasks/oled.rs index bd0550c..e7ec4e3 100644 --- a/src/tasks/oled.rs +++ b/src/tasks/oled.rs @@ -13,7 +13,7 @@ use crate::{animation::Animation, backoff::Backoff, events::{Notification, Predi pub type OledUiSurfacePool = BufferedSurfacePool; #[cfg(not(feature="oled"))] -pub type OledUiSurfacePool = NullBufferPool>; +pub type OledUiSurfacePool = NullBufferPool; type OledSurface = >::Surface;