From f497ea0100a28f8dffed57eebe52ec58c556e1e1 Mon Sep 17 00:00:00 2001 From: Carlos Maiolino Date: Thu, 30 Oct 2025 18:39:57 +0100 Subject: Implement mouse tracking. Make the object follow the mouse position Signed-off-by: Carlos Maiolino --- src/include/rb.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include') diff --git a/src/include/rb.h b/src/include/rb.h index cc321e6..aba3488 100644 --- a/src/include/rb.h +++ b/src/include/rb.h @@ -3,9 +3,9 @@ #include -#define RB_WIDTH 1600 -#define RB_HEIGHT 900 -#define RB_FPS (1.0 / 30.0) /* 1 sec divided by 30 frames */ +#define RB_WIDTH 2240 +#define RB_HEIGHT 1400 +#define RB_FPS (1.0 / 80.0) /* 1 sec divided by 30 frames */ struct rb { float width; -- cgit v1.2.3