diff --git a/android-project/app/src/main/java/org/libsdl/app/SDLControllerManager.java b/android-project/app/src/main/java/org/libsdl/app/SDLControllerManager.java index 64efa4343f..1335933b83 100644 --- a/android-project/app/src/main/java/org/libsdl/app/SDLControllerManager.java +++ b/android-project/app/src/main/java/org/libsdl/app/SDLControllerManager.java @@ -71,7 +71,7 @@ public class SDLControllerManager } } - static void initializeDeviceListener() { + static public void initializeDeviceListener() { if (mDeviceListener == null) { mDeviceListener = new SDLDeviceListener(); @@ -80,7 +80,7 @@ public class SDLControllerManager } } - static void shutdownDeviceListener() { + static public void shutdownDeviceListener() { if (mDeviceListener != null) { InputManager im = (InputManager) SDL.getContext().getSystemService(Context.INPUT_SERVICE); im.unregisterInputDeviceListener(mDeviceListener);