From 665cbbd39e99808a7827e45690dd972d46ea35d9 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 4 Jul 2015 19:16:17 +0200 Subject: [PATCH] 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 --- config.def.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config.def.h b/config.def.h index 2b9ab76a30..3fee830fe8 100644 --- a/config.def.h +++ b/config.def.h @@ -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;