(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
This commit is contained in:
parent
457ffd3dd8
commit
be51f54ab5
|
@ -526,7 +526,7 @@ proportional to the display width. */
|
||||||
#ifdef RARCH_MOBILE
|
#ifdef RARCH_MOBILE
|
||||||
scale_factor = menu_display_get_dpi();
|
scale_factor = menu_display_get_dpi();
|
||||||
#else
|
#else
|
||||||
scale_factor = width * 256 / 1920;
|
scale_factor = width / 7.5;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
glui->line_height = scale_factor / 3;
|
glui->line_height = scale_factor / 3;
|
||||||
|
|
Loading…
Reference in New Issue