From deda966b6e9ccf817b900dfe8f9bca058e34ce0c Mon Sep 17 00:00:00 2001 From: "Lucas S. Vieira" Date: Mon, 14 Apr 2025 20:33:42 -0300 Subject: [PATCH] Fix right arrow in title screen --- src/screen_title.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen_title.c b/src/screen_title.c index 5a3ae6f..77b6d00 100644 --- a/src/screen_title.c +++ b/src/screen_title.c @@ -445,7 +445,7 @@ screen_title_draw(void *d) if(data->menu_option > 1) font_draw_big("<", CENTERX - txt_hsize - 22, 200); if(data->menu_option < 4) - font_draw_big(">", CENTERX + txt_hsize + 22, 200); + font_draw_big(">", CENTERX + txt_hsize + 14, 200); } font_reset_color(); }