mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
Added missing @Override annotations in Java file.
This commit is contained in:
parent
26ce68e8c2
commit
d6c1e3812e
4
android-project/src/org/libsdl/app/SDLActivity.java
Normal file → Executable file
4
android-project/src/org/libsdl/app/SDLActivity.java
Normal file → Executable file
@ -853,22 +853,26 @@ class SDLJoystickHandler_API12 extends SDLJoystickHandler {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getNumJoysticks() {
|
||||
createJoystickList();
|
||||
|
||||
return mJoyIdList.size();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getJoystickName(int joy) {
|
||||
createJoystickList();
|
||||
return InputDevice.getDevice(mJoyIdList.get(joy)).getName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getJoystickAxes(int joy) {
|
||||
createJoystickList();
|
||||
return InputDevice.getDevice(mJoyIdList.get(joy)).getMotionRanges().size();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getJoyId(int devId) {
|
||||
int i=0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user