You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Fix unchecked call to put() warning in GodotInputHandler.java
(cherry picked from commit 8270e101a7)
This commit is contained in:
committed by
Rémi Verschelde
parent
ecf4557348
commit
54eef268c0
@@ -46,7 +46,7 @@ class Joystick {
|
||||
/*
|
||||
* Keep track of values so we can prevent flooding the engine with useless events.
|
||||
*/
|
||||
protected final SparseArray axesValues = new SparseArray<Float>(4);
|
||||
protected final SparseArray<Float> axesValues = new SparseArray<Float>(4);
|
||||
protected int hatX;
|
||||
protected int hatY;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user