From be51f54ab50b63ec7309f26fa0dc645968aa3a7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Andr=C3=A9=20Santoni?= Date: Wed, 8 Jul 2015 01:01:28 +0700 Subject: [PATCH] (GLUI) remove that reference to 1920, and use a ratio such as the font size will be 32px on a 1920x1080 display like on XMB --- menu/drivers/glui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/drivers/glui.c b/menu/drivers/glui.c index 7b65d5ae3b..23d0a7e94f 100644 --- a/menu/drivers/glui.c +++ b/menu/drivers/glui.c @@ -526,7 +526,7 @@ proportional to the display width. */ #ifdef RARCH_MOBILE scale_factor = menu_display_get_dpi(); #else - scale_factor = width * 256 / 1920; + scale_factor = width / 7.5; #endif glui->line_height = scale_factor / 3;