Fix unchecked call to put() warning in GodotInputHandler.java

(cherry picked from commit 8270e101a7)
This commit is contained in:
Marcel Admiraal 2021-06-30 12:13:05 +01:00 committed by Rémi Verschelde
parent 65063dbe0a
commit 76c1a0e91d
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -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;
}