Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions input/drivers/sdl3_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -659,8 +659,8 @@ static void sdl3_input_poll(void *data)
}
else if (event.type == SDL_EVENT_MOUSE_WHEEL)
{
Sint32 wx = event.wheel.integer_x;
Sint32 wy = event.wheel.integer_y;
float wx = event.wheel.x;
float wy = event.wheel.y;

/* FLIPPED = "natural" scrolling: SDL delivers inverted
* signs and expects the caller to negate them. */
Expand Down
Loading