Add new ini option, adjmouse, enables mouse sensitivity scaling

This commit is contained in:
Toni Spets 2010-11-07 15:54:47 +02:00
parent 58001d9de3
commit 7ff0c285ba
3 changed files with 23 additions and 5 deletions

View file

@ -73,8 +73,8 @@ struct game games[] =
BOOL WINAPI fake_GetCursorPos(LPPOINT lpPoint)
{
lpPoint->x = ddraw->cursor.x;
lpPoint->y = ddraw->cursor.y;
lpPoint->x = (int)ddraw->cursor.x;
lpPoint->y = (int)ddraw->cursor.y;
return TRUE;
}