Re: [PATCH] dinput: Skip old mouse movement evenets.
7 Feb
2008
7 Feb
'08
10:38 a.m.
Vitaliy Margolen <wine-patches(a)kievinfo.com> writes:
@@ -280,6 +281,9 @@ static void dinput_mouse_hook( LPDIRECTINPUTDEVICE8A iface, WPARAM wparam, LPARA { POINT pt, pt1;
+ /* Skip old movement events */ + if (This->last_event_time > hook->time) break;
That's not an appropriate way to compare timestamps. -- Alexandre Julliard julliard(a)winehq.org
6521
Age (days ago)
6521
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard