Enable the mouse by default on Windows and OSX

This commit is contained in:
twinaphex 2015-11-01 16:38:04 +01:00
parent a752a24f98
commit 5cabb8111a
2 changed files with 7 additions and 1 deletions

View file

@ -353,6 +353,12 @@ static const bool def_history_list_enable = true;
static const unsigned int def_user_language = 0;
#if (defined(__APPLE__) && defined(__MACH__) && defined(OSX)) || (defined(_WIN32) && !defined(_XBOX))
static const bool def_mouse_enable = true;
#else
static const bool def_mouse_enable = false;
#endif
/* VIDEO */
#if defined(_XBOX360)

View file

@ -5322,7 +5322,7 @@ static bool setting_append_list_menu_options(
settings->menu.mouse.enable,
menu_hash_to_str(MENU_LABEL_MOUSE_ENABLE),
menu_hash_to_str(MENU_LABEL_VALUE_MOUSE_ENABLE),
false,
def_mouse_enable,
menu_hash_to_str(MENU_VALUE_OFF),
menu_hash_to_str(MENU_VALUE_ON),
group_info.name,