Add new ini option, adjmouse, enables mouse sensitivity scaling
This commit is contained in:
parent
58001d9de3
commit
7ff0c285ba
3 changed files with 23 additions and 5 deletions
4
mouse.c
4
mouse.c
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue