Default "ShowTouchPause" to true on Windows - makes sense on tablets.
This commit is contained in:
parent
ba0779183a
commit
f30a052fdc
1 changed files with 6 additions and 0 deletions
|
@ -442,8 +442,14 @@ static ConfigSetting controlSettings[] = {
|
|||
ConfigSetting("ShowTouchDpad", &g_Config.bShowTouchDpad, true),
|
||||
ConfigSetting("ShowTouchUnthrottle", &g_Config.bShowTouchUnthrottle, true),
|
||||
#if !defined(__SYMBIAN32__) && !defined(IOS) && !defined(MAEMO)
|
||||
#if defined(_WIN32)
|
||||
// A win32 user seeing touch controls is likely using PPSSPP on a tablet. There it makes
|
||||
// sense to default this to on.
|
||||
ConfigSetting("ShowTouchPause", &g_Config.bShowTouchPause, true),
|
||||
#else
|
||||
ConfigSetting("ShowTouchPause", &g_Config.bShowTouchPause, false),
|
||||
#endif
|
||||
#endif
|
||||
#if defined(USING_WIN_UI)
|
||||
ConfigSetting("IgnoreWindowsKey", &g_Config.bIgnoreWindowsKey, false),
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue