From ffee890842062a109263f84db134d77ddbaa2e9b Mon Sep 17 00:00:00 2001
From: koniifer <koniifer@proton.me>
Date: Sat, 8 Feb 2025 11:44:50 +0000
Subject: [PATCH] fix cursor going out of bounds

---
 sysdata/programs/sunset_server/src/main.hb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sysdata/programs/sunset_server/src/main.hb b/sysdata/programs/sunset_server/src/main.hb
index 5902c0f..252f1c6 100644
--- a/sysdata/programs/sunset_server/src/main.hb
+++ b/sysdata/programs/sunset_server/src/main.hb
@@ -63,8 +63,8 @@ main := fn(): int {
 	loop {
 		mouse_event := intouch.recieve_mouse_event()
 		if mouse_event != null {
-			mouse.x = clamp(int, mouse.x + mouse_event.x_change, mouse.cursor_width, @bitcast(screen.width - mouse.cursor_width))
-			mouse.y = clamp(int, mouse.y - mouse_event.y_change, mouse.cursor_width, @bitcast(screen.height - mouse.cursor_width))
+			mouse.x = clamp(int, mouse.x + mouse_event.x_change, mouse.cursor_width + 1, @bitcast(screen.width - mouse.cursor_width - 1))
+			mouse.y = clamp(int, mouse.y - mouse_event.y_change, mouse.cursor_width + 1, @bitcast(screen.height - mouse.cursor_width - 1))
 
 			if mouse_event.left {
 				text_label.set_label_text("LEFT CLICK")