Android: Use touch emulation of IR by default

While having motion control emulation of IR enabled by default
makes sense in situations like using a DualShock 4 on a PC,
Android has the additional option of touch emulation of IR
which seems to be better liked, and the default value which
was chosen with PC in mind was carried over to Android
without any particular consideration. This change disables
motion control emulation of IR by default on Android only.
This commit is contained in:
JosJuice 2020-04-07 15:04:14 +02:00
commit 18a4afb053
5 changed files with 24 additions and 17 deletions

View file

@ -905,7 +905,7 @@ public final class EmulationActivity extends AppCompatActivity
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(R.string.emulation_motion_controls);
builder.setSingleChoiceItems(R.array.motionControlsEntries,
mPreferences.getInt("motionControlsEnabled", 0),
mPreferences.getInt("motionControlsEnabled", 1),
(dialog, indexSelected) ->
{
editor.putInt("motionControlsEnabled", indexSelected);