glfwGetGamepadName

This commit is contained in:
Antoine 2021-06-23 21:57:58 +02:00
parent 0bd14bbd5d
commit 262fef9b6c

View File

@ -107,8 +107,8 @@ public class GamepadInput {
return new Vector3f(x,y); return new Vector3f(x,y);
} }
public int getGamepadName(){ public String getGamepadName(){
return this.gamepadNum; return glfwGetGamepadName(this.gamepadNum);
} }
} }