Fix improper function signature

This commit is contained in:
SerpentSpirale 2021-11-14 18:52:11 +01:00
parent 690883ddee
commit 58e2c2ff82
3 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
20211023z
20211114

View File

@ -53,7 +53,7 @@ public class CallbackBridge {
}
// Called from Android side
public static void receiveCallback(int type, float i1, float i2, int i3, int i4) {
public static void receiveCallback(int type, int i1, int i2, int i3, int i4) {
/*
if (INPUT_DEBUG_ENABLED) {
System.out.println("LWJGL GLFW Callback received type=" + Integer.toString(type) + ", data=" + i1 + ", " + i2 + ", " + i3 + ", " + i4);