소스 검색

Fixed bug 4012 - Wayland: invalid direction on mouse wheel

Vladimir

Invalid direction on mouse wheel

Patch tested in Centos 7 + Weston
Sam Lantinga 7 년 전
부모
커밋
1fa4bcca6a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/video/wayland/SDL_waylandevents.c

+ 2 - 2
src/video/wayland/SDL_waylandevents.c

@@ -337,10 +337,10 @@ pointer_handle_axis_common(struct SDL_WaylandInput *input,
         switch (a) {
             case WL_POINTER_AXIS_VERTICAL_SCROLL:
                 x = 0;
-                y = (float)wl_fixed_to_double(value);
+                y = 0 - (float)wl_fixed_to_double(value);
                 break;
             case WL_POINTER_AXIS_HORIZONTAL_SCROLL:
-                x = (float)wl_fixed_to_double(value);
+                x = 0 - (float)wl_fixed_to_double(value);
                 y = 0;
                 break;
             default: