mouse hitbox fix

This commit is contained in:
Chris 2026-02-04 22:05:48 +01:00
parent f3299c67fa
commit d24cbec810
5 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -348,7 +348,7 @@ void wm_handle_click(int x, int y) {
int sh = get_screen_height(); int sh = get_screen_height();
// Check Start Button // Check Start Button
if (rect_contains(2, sh - 26, 60, 24, x, y)) { if (rect_contains(2, sh - 26, 90, 24, x, y)) {
start_menu_open = !start_menu_open; start_menu_open = !start_menu_open;
force_redraw = true; force_redraw = true;
return; return;