mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Android: Disable input device sensor input due to crash
This commit is contained in:
@ -89,7 +89,13 @@ public class DolphinSensorEventListener implements SensorEventListener
|
||||
{
|
||||
mSensorManager = inputDevice.getSensorManager();
|
||||
|
||||
addSensors();
|
||||
// TODO: There is a bug where after suspending sensors, onSensorChanged can get called for
|
||||
// a sensor that we never registered as a listener for. The way our code is currently written,
|
||||
// this causes a NullPointerException, but if we checked for null we would instead have the
|
||||
// problem of being spammed with onSensorChanged calls even though the sensor shouldn't be
|
||||
// enabled. For now, let's comment out the ability to use InputDevice sensors.
|
||||
|
||||
//addSensors();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user