From b47b2967bdf2ce06d12a706a8d5e04e9379360e5 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Fri, 4 Oct 2024 19:34:00 +0200 Subject: [PATCH] fix: pixel counter workies now --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 0d93fa4..47f30ac 100644 --- a/src/main.rs +++ b/src/main.rs @@ -210,6 +210,7 @@ where }; println!("setting pixel {},{} to {}", x, y, c); set_pixel_rgba(self.grids.as_ref(), canvas, x, y, c); + increment_counter(); return Ok(()); }