This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/PKGBUILD | |
+++ b/PKGBUILD | |
@@ -69,6 +69,7 @@ source=( | |
'git+https://github.com/Joshua-Ashton/reshade.git' | |
'git+https://github.com/Joshua-Ashton/GamescopeShaders.git#tag=v0.1' | |
'git+https://github.com/KhronosGroup/SPIRV-Headers.git' | |
+ 'https://gist.githubusercontent.com/VoodaGod/e4ac5363bd98b86cf7ab739101f852e5/raw/90ded2c8b0896999f078bf908288abeb372912aa/mouse_sense_fix.patch' | |
) | |
b2sums=( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/src/wlserver.cpp | |
+++ b/src/wlserver.cpp | |
@@ -2336,6 +2336,8 @@ static bool wlserver_apply_constraint( double *dx, double *dy ) | |
return true; | |
} | |
+static double rem_x = 0.0; | |
+static double rem_y = 0.0; | |
void wlserver_mousemotion( double dx, double dy, uint32_t time ) | |
{ |