freebsd-ports/games/quake2max/files/patch-unix__gl_glx.c
Alejandro Pulver 8f7170d61e - Update to version 0.45.
- Remove PORTSCOUT for avoiding version 0.45.
- Reduce too high default mouse sensivity in game.
- Change USE_GCC from 3.2+ to 3.4+ because it is supported in more archs.
2006-12-30 21:31:36 +00:00

30 lines
818 B
C

--- unix/gl_glx.c.orig Wed Jan 11 10:04:12 2006
+++ unix/gl_glx.c Sat Dec 30 18:21:42 2006
@@ -475,7 +475,6 @@
while (XPending(dpy)) {
XNextEvent(dpy, &event);
- mx = my = 0;
switch(event.type) {
case KeyPress:
myxtime = event.xkey.time;
@@ -490,15 +489,13 @@
case MotionNotify:
if (mouse_active) {
if (dgamouse) {
- mx += (event.xmotion.x + win_x) * 2;
- my += (event.xmotion.y + win_y) * 2;
+ mx += (event.xmotion.x + win_x);
+ my += (event.xmotion.y + win_y);
}
else
{
- mx += ((int)event.xmotion.x - mwx) * 2;
- my += ((int)event.xmotion.y - mwy) * 2;
- mwx = event.xmotion.x;
- mwy = event.xmotion.y;
+ mx += ((int)event.xmotion.x - mwx);
+ my += ((int)event.xmotion.y - mwy);
if (mx || my)
dowarp = true;