Wayland touch inputs send normalized coords Resolves #4361
diff --git a/src/video/wayland/SDL_waylandtouch.c b/src/video/wayland/SDL_waylandtouch.c
index 35420cb..7f24f6a 100644
--- a/src/video/wayland/SDL_waylandtouch.c
+++ b/src/video/wayland/SDL_waylandtouch.c
@@ -73,8 +73,8 @@ touch_handle_touch(void *data,
**/
float FIXED_TO_FLOAT = 1. / 10000.;
- float xf = FIXED_TO_FLOAT * x;
- float yf = FIXED_TO_FLOAT * y;
+ float xf = FIXED_TO_FLOAT * normalized_x;
+ float yf = FIXED_TO_FLOAT * normalized_y;
float PRESSURE_TO_FLOAT = 1. / 255.;
float pressuref = PRESSURE_TO_FLOAT * pressure;