Fix unchecked call to put() warning in GodotInputHandler.java
This commit is contained in:
parent
52e3f986ac
commit
8270e101a7
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class Joystick {
|
||||||
/*
|
/*
|
||||||
* Keep track of values so we can prevent flooding the engine with useless events.
|
* 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 hatX;
|
||||||
protected int hatY;
|
protected int hatY;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue