Changelog:
r43643 | compyx | 2023-04-05 17:36:22 +0000 (Wed, 05 Apr 2023) | 9 lines
SDL2: Remove incorrect typedef for `SDL_JoystickID`
As it stands now with the mistyped `#ifdef USE_SDLUI2` we typedef `SDL_JoystickID`
to `int` for SDL 2.x, not 1.x, *and* the correct typedef would be `int32_t`,
not plain `int`.
Since there are other issues with SDL 1.2 and the new joystick code it's better
to remove this incorrect typedef to avoid issues in the future.
------------------------------------------------------------------------
r43642 | rhialto | 2023-04-05 17:36:16 +0000 (Wed, 05 Apr 2023) | 4 lines
Fix "implicit conversion loses integer precision" warning.
With the expected values, now noted in a comment, there should be no problem.
------------------------------------------------------------------------
r43641 | compyx | 2023-04-05 17:31:26 +0000 (Wed, 05 Apr 2023) | 3 lines
Remove useless `line_num` variable
------------------------------------------------------------------------
r43640 | compyx | 2023-04-05 17:28:58 +0000 (Wed, 05 Apr 2023) | 3 lines
SDL: strlen(3) does *not* return int
------------------------------------------------------------------------
r43639 | blackystardust | 2023-04-05 02:36:03 +0000 (Wed, 05 Apr 2023) | 1 line
Fix super old typo.
------------------------------------------------------------------------