http://bugs.winehq.org/show_bug.cgi?id=23159
Summary: AionOnline: Mouse glitches on panning/rotation Product: Wine Version: 1.1.32 Platform: All OS/Version: All Status: UNCONFIRMED Severity: normal Priority: P2 Component: winex11.drv AssignedTo: wine-bugs@winehq.org ReportedBy: oskar.gargas@gmail.com
When you try to rotate camera by holding mouse button it glitches - try to move, comes back to point of origin, move again.
This is common bug reported by everyone who tries to play Aion Online.
There is workaround for that:
In 'wine-source/dlls/winex11.drv/mouse.c' find: wine_tsx11_unlock(); return TRUE;
(in 1.2-rc3 it is line 844) and replace it with: wine_tsx11_unlock(); queue_raw_mouse_message( WM_MOUSEMOVE, NULL, x, y, 0, GetCurrentTime(), 0, 0 ); return TRUE;
http://appdb.winehq.org/objectManager.php?sClass=version&iId=20402
I don't think this is related to the 6971 bug.