Android: Changed an internal joystick function to return count instead of id.
The returned value is currently not used by the caller. The instance id would also not be needed on Java side and providing it just complicated the function. Partially fixes Bugzilla #3234.
This commit is contained in:
parent
9cd03433b3
commit
78c1a2d31f
1 changed files with 1 additions and 2 deletions
|
@ -340,7 +340,6 @@ Android_RemoveJoystick(int device_id)
|
|||
return -1;
|
||||
}
|
||||
|
||||
const int retval = item->device_instance;
|
||||
if (item->joystick) {
|
||||
item->joystick->hwdata = NULL;
|
||||
}
|
||||
|
@ -376,7 +375,7 @@ Android_RemoveJoystick(int device_id)
|
|||
|
||||
SDL_free(item->name);
|
||||
SDL_free(item);
|
||||
return retval;
|
||||
return numjoysticks;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue