Workaround implemented for passing faked mickeys to mouse callback

routine.
oldstable
Jukka Heinonen 2003-08-29 22:13:27 +00:00 committed by Alexandre Julliard
parent f68017b851
commit ec42ea4dfb
1 changed files with 11 additions and 0 deletions

View File

@ -205,6 +205,17 @@ static void QueueMouseRelay(DWORD mx, DWORD my, WORD mask)
data->but = mouse_info.but;
data->x = mouse_info.x;
data->y = mouse_info.y;
/*
* Fake mickeys.
*
* FIXME: This is not entirely correct. If mouse if moved to the edge
* of the screen, mouse will stop moving and mickeys won't
* be updated even though they should be.
*/
data->mx = mouse_info.x * (mouse_info.HMPratio / 8);
data->my = mouse_info.y * (mouse_info.VMPratio / 8);
DOSVM_QueueEvent(-1, DOS_PRIORITY_MOUSE, MouseRelay, data);
}
}