mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-23 05:02:46 +00:00
Enable the mouse by default on Windows and OSX
This commit is contained in:
parent
a752a24f98
commit
5cabb8111a
@ -353,6 +353,12 @@ static const bool def_history_list_enable = true;
|
|||||||
|
|
||||||
static const unsigned int def_user_language = 0;
|
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 */
|
/* VIDEO */
|
||||||
|
|
||||||
#if defined(_XBOX360)
|
#if defined(_XBOX360)
|
||||||
|
@ -5322,7 +5322,7 @@ static bool setting_append_list_menu_options(
|
|||||||
settings->menu.mouse.enable,
|
settings->menu.mouse.enable,
|
||||||
menu_hash_to_str(MENU_LABEL_MOUSE_ENABLE),
|
menu_hash_to_str(MENU_LABEL_MOUSE_ENABLE),
|
||||||
menu_hash_to_str(MENU_LABEL_VALUE_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_OFF),
|
||||||
menu_hash_to_str(MENU_VALUE_ON),
|
menu_hash_to_str(MENU_VALUE_ON),
|
||||||
group_info.name,
|
group_info.name,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user