mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Android: Remove touchscreen check for rumble
That a device doesn't have a touchscreen doesn't necessarily mean that it doesn't support rumble (though it is usually the case). setPhoneVibrator already contains a check for whether the device supports rumble, so we can simply remove the touchscreen check.
This commit is contained in:
parent
b354e343a7
commit
709031bb1d
@ -1177,11 +1177,6 @@ public final class EmulationActivity extends AppCompatActivity
|
||||
.commit();
|
||||
}
|
||||
|
||||
public boolean deviceHasTouchScreen()
|
||||
{
|
||||
return mDeviceHasTouchScreen;
|
||||
}
|
||||
|
||||
public String getSelectedTitle()
|
||||
{
|
||||
return mSelectedTitle;
|
||||
@ -1204,7 +1199,7 @@ public final class EmulationActivity extends AppCompatActivity
|
||||
|
||||
public void initInputPointer()
|
||||
{
|
||||
if (deviceHasTouchScreen())
|
||||
if (mDeviceHasTouchScreen)
|
||||
mEmulationFragment.initInputPointer();
|
||||
}
|
||||
}
|
||||
|
@ -22,9 +22,7 @@ public class Rumble
|
||||
{
|
||||
clear();
|
||||
|
||||
if (activity.deviceHasTouchScreen() &&
|
||||
PreferenceManager.getDefaultSharedPreferences(activity)
|
||||
.getBoolean("phoneRumble", true))
|
||||
if (PreferenceManager.getDefaultSharedPreferences(activity).getBoolean("phoneRumble", true))
|
||||
{
|
||||
setPhoneVibrator(true, activity);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user