From 3fbf682785f2fa0550b371d3829f4b2d211fc596 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 12 Jul 2023 01:21:35 -0500 Subject: [PATCH] Pass gamepad touch input natively by default Most devices will have a touchscreen which already provides mouse input and Steam Input is can provide gamepad touchpad mouse control if desired. --- .../java/com/limelight/preferences/PreferenceConfiguration.java | 2 +- app/src/main/res/xml/preferences.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/limelight/preferences/PreferenceConfiguration.java b/app/src/main/java/com/limelight/preferences/PreferenceConfiguration.java index 9ca173ce..a23eea68 100644 --- a/app/src/main/java/com/limelight/preferences/PreferenceConfiguration.java +++ b/app/src/main/java/com/limelight/preferences/PreferenceConfiguration.java @@ -92,7 +92,7 @@ public class PreferenceConfiguration { private static final boolean DEFAULT_ENABLE_AUDIO_FX = false; private static final boolean DEFAULT_REDUCE_REFRESH_RATE = false; private static final boolean DEFAULT_FULL_RANGE = false; - private static final boolean DEFAULT_GAMEPAD_TOUCHPAD_AS_MOUSE = true; + private static final boolean DEFAULT_GAMEPAD_TOUCHPAD_AS_MOUSE = false; private static final boolean DEFAULT_GAMEPAD_MOTION_SENSORS = true; public static final int FRAME_PACING_MIN_LATENCY = 0; diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml index f52b6827..d169b555 100644 --- a/app/src/main/res/xml/preferences.xml +++ b/app/src/main/res/xml/preferences.xml @@ -99,7 +99,7 @@ android:key="checkbox_gamepad_touchpad_as_mouse" android:title="@string/title_checkbox_gamepad_touchpad_as_mouse" android:summary="@string/summary_checkbox_gamepad_touchpad_as_mouse" - android:defaultValue="true" /> + android:defaultValue="false" />