mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 00:39:53 +00:00
Because DPI detection is a bit screwy right now on the desktop,
for desktop we just enable DPI Override by default and set it to 200dpi by default
This commit is contained in:
parent
e4ad131a2e
commit
665cbbd39e
@ -664,9 +664,17 @@ static const unsigned default_content_history_size = 100;
|
||||
/* Show Menu start-up screen on boot. */
|
||||
static const bool menu_show_start_screen = true;
|
||||
|
||||
#ifdef RARCH_MOBILE
|
||||
static const bool menu_dpi_override_enable = false;
|
||||
#else
|
||||
static const bool menu_dpi_override_enable = true;
|
||||
#endif
|
||||
|
||||
#ifdef RARCH_MOBILE
|
||||
static const unsigned menu_dpi_override_value = 72;
|
||||
#else
|
||||
static const unsigned menu_dpi_override_value = 200;
|
||||
#endif
|
||||
|
||||
/* Log level for libretro cores (GET_LOG_INTERFACE). */
|
||||
static const unsigned libretro_log_level = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user