diff options
author | Ricardo Wurmus <[email protected]> | 2020-08-15 09:06:05 +0200 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2020-08-15 09:06:05 +0200 |
commit | be672e2dc6357c00f179a37c1db71b48dfa4fa24 (patch) | |
tree | 73c2129a0b036f812d609e9ea5737ffdc7b5435c /gnu/packages/patches/freedink-engine-fix-sdl-hints.patch | |
parent | e380ef14cfc0126bb75e43fc237b2fbc05a7c7d2 (diff) | |
parent | 1a275962302fa18e54da790e89e2c826e6b60b53 (diff) |
Merge remote-tracking branch 'origin/master' into wip-haskell
Diffstat (limited to 'gnu/packages/patches/freedink-engine-fix-sdl-hints.patch')
-rw-r--r-- | gnu/packages/patches/freedink-engine-fix-sdl-hints.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/patches/freedink-engine-fix-sdl-hints.patch b/gnu/packages/patches/freedink-engine-fix-sdl-hints.patch new file mode 100644 index 0000000000..ce37ab4870 --- /dev/null +++ b/gnu/packages/patches/freedink-engine-fix-sdl-hints.patch @@ -0,0 +1,33 @@ +From 85f8dda6de28ef86e58f26c8aa863a26524f6ce0 Mon Sep 17 00:00:00 2001 +From: Jesse Gibbons <[email protected]> +Date: Sun, 9 Feb 2020 21:46:26 -0700 +Subject: [PATCH] Fix mouse/touch event hints for SDL 2.0.10. + +This fixes the bug reported at +<https://lists.gnu.org/archive/html/bug-freedink/2019-08/msg00000.html>. + +It should remain backwards compatible with releases of SDL prior to 2.0.10. +--- + src/input.cpp | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/src/input.cpp b/src/input.cpp +index b5ae21e..153d349 100644 +--- a/src/input.cpp ++++ b/src/input.cpp +@@ -91,7 +91,12 @@ void input_init(void) + + // TODO: don't attempt to simulate mouse events from touch events - + // fake mouse events often are de-centered ++#ifdef SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH + SDL_SetHint(SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH, "0"); ++#elif defined SDL_HINT_MOUSE_TOUCH_EVENTS && defined SDL_HINT_TOUCH_MOUSE_EVENTS ++ SDL_SetHint(SDL_HINT_MOUSE_TOUCH_EVENTS, "0"); ++ SDL_SetHint(SDL_HINT_TOUCH_MOUSE_EVENTS, "0"); ++#endif + + /* Touch devices */ + { +-- +2.25.0 + |