Enable 'Touch enable' by default for RARCH_MOBILE

This commit is contained in:
twinaphex 2015-03-30 23:56:39 +02:00
parent 8a33670c7c
commit bce35fa8cc
2 changed files with 7 additions and 1 deletions

View file

@ -314,6 +314,12 @@ enum
#define DEFAULT_ASPECT_RATIO -1.0f
#endif
#ifdef RARCH_MOBILE
static const bool pointer_enable = true;
#else
static const bool pointer_enable = false;
#endif
static const bool def_history_list_enable = true;
static const unsigned int def_user_language = 0;

View file

@ -5265,7 +5265,7 @@ static bool setting_append_list_menu_options(
settings->menu.pointer.enable,
"menu_pointer_enable",
"Touch Enable",
false,
pointer_enable,
"OFF",
"ON",
group_info.name,