We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86c81cb commit 0ca7722Copy full SHA for 0ca7722
osu.Framework.Android/AndroidGameSurface.cs
@@ -129,7 +129,12 @@ private TabletPenDeviceType getPenDeviceType(MotionEvent e)
129
var device = e.Device;
130
131
if (device == null)
132
+ {
133
+ Logging.Logger.Log("motion event from null device");
134
return default_pen_device_type;
135
+ }
136
+
137
+ Logging.Logger.Log($"motion event from\n{device}");
138
139
return device.IsExternal ? TabletPenDeviceType.Indirect : TabletPenDeviceType.Direct;
140
}
0 commit comments