Skip to content

Commit

Permalink
SDL_migration.cocci: A few fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 2, 2024
1 parent 91b074b commit d2b2a75
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions build-scripts/SDL_migration.cocci
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,12 @@ expression e;
+ /* FIXME MIGRATION: SDL_Has3DNow() has been removed; there is no replacement. */ 0
- SDL_Has3DNow()

// SDL_HasRDTSC() has been removed; there is no replacement.
@@
@@
+ /* FIXME MIGRATION: SDL_HasRDTSC() has been removed; there is no replacement. */ 0
- SDL_HasRDTSC()

// SDL_HINT_VIDEO_X11_XINERAMA (Xinerama no longer supported by the X11 backend)
@@
@@
Expand Down Expand Up @@ -887,11 +893,11 @@ typedef SDL_ControllerTouchpadEvent, SDL_GamepadTouchpadEvent;
@@
@@
- SDL_CONTROLLER_BUTTON_A
+ SDL_GAMEPAD_BUTTON_A
+ SDL_GAMEPAD_BUTTON_SOUTH
@@
@@
- SDL_CONTROLLER_BUTTON_B
+ SDL_GAMEPAD_BUTTON_B
+ SDL_GAMEPAD_BUTTON_EAST
@@
@@
- SDL_CONTROLLER_BUTTON_BACK
Expand Down Expand Up @@ -971,11 +977,11 @@ typedef SDL_ControllerTouchpadEvent, SDL_GamepadTouchpadEvent;
@@
@@
- SDL_CONTROLLER_BUTTON_X
+ SDL_GAMEPAD_BUTTON_X
+ SDL_GAMEPAD_BUTTON_WEST
@@
@@
- SDL_CONTROLLER_BUTTON_Y
+ SDL_GAMEPAD_BUTTON_Y
+ SDL_GAMEPAD_BUTTON_NORTH
@@
@@
- SDL_CONTROLLER_TYPE_AMAZON_LUNA
Expand Down

0 comments on commit d2b2a75

Please sign in to comment.