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:
twinaphex 2015-07-04 19:16:17 +02:00
parent e4ad131a2e
commit 665cbbd39e

View File

@ -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;