diff --git a/engine/src/jogl/com/jme3/system/jogl/JoglContext.java b/engine/src/jogl/com/jme3/system/jogl/JoglContext.java index 39b9f263b..9e852c746 100644 --- a/engine/src/jogl/com/jme3/system/jogl/JoglContext.java +++ b/engine/src/jogl/com/jme3/system/jogl/JoglContext.java @@ -61,6 +61,7 @@ public abstract class JoglContext implements JmeContext { protected KeyInput keyInput; protected MouseInput mouseInput; + protected JoyInput joyInput; public void setSystemListener(SystemListener listener){ this.listener = listener; @@ -91,7 +92,7 @@ public abstract class JoglContext implements JmeContext { } public JoyInput getJoyInput() { - return null; + return joyInput; } public Timer getTimer() {