Merge pull request #50024 from madmiraal/fix-android-unchecked-warning

Fix unchecked call to put() warning in GodotInputHandler.java
This commit is contained in:
Rémi Verschelde 2021-06-30 18:19:01 +02:00 committed by GitHub
commit 6f9767eff7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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