mirror of
https://github.com/libretro/RetroArch
synced 2025-03-20 10:20:51 +00:00
Enable overlay by default only on mobile + winraw overlay fix
This commit is contained in:
parent
9337facd49
commit
c798cbaf3f
@ -1468,7 +1468,11 @@ bool config_overlay_enable_default(void)
|
||||
{
|
||||
if (g_defaults.overlay_set)
|
||||
return g_defaults.overlay_enable;
|
||||
#if defined(RARCH_MOBILE)
|
||||
return true;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
static struct config_array_setting *populate_settings_array(settings_t *settings, int *size)
|
||||
|
@ -414,7 +414,7 @@ static void winraw_update_mouse_state(winraw_input_t *wr,
|
||||
{
|
||||
settings_t *settings = config_get_ptr();
|
||||
if ( settings->bools.input_overlay_enable
|
||||
&& settings->bools.input_overlay_show_mouse_cursor)
|
||||
&& !string_is_empty(settings->paths.path_overlay))
|
||||
getcursorpos = true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user