Переглянути джерело

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

Fix unchecked call to put() warning in GodotInputHandler.java
Rémi Verschelde 4 роки тому
батько
коміт
6f9767eff7

+ 1 - 1
platform/android/java/lib/src/org/godotengine/godot/input/Joystick.java

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