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.
This commit is contained in:
Cameron Gutman 2023-07-12 01:21:35 -05:00
parent 16086a6d3f
commit 3fbf682785
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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" />
<CheckBoxPreference
android:key="checkbox_gamepad_motion_sensors"
android:title="@string/title_checkbox_gamepad_motion_sensors"