Force mouse clip when using vhack

This commit is contained in:
Toni Spets 2011-03-24 19:42:36 +02:00
parent c073805db3
commit e048df42d7
3 changed files with 22 additions and 4 deletions

View file

@ -102,6 +102,24 @@ DWORD WINAPI render_main(void)
{
scale_w *= 640.0f / ddraw->width;
scale_h *= 400.0f / ddraw->height;
if (ddraw->cursorclip.width != 640 || ddraw->cursorclip.height != 400)
{
ddraw->cursorclip.width = 640;
ddraw->cursorclip.height = 400;
ddraw->cursor.x = 320;
ddraw->cursor.y = 200;
}
}
else
{
if (ddraw->cursorclip.width != ddraw->width || ddraw->cursorclip.height != ddraw->height)
{
ddraw->cursorclip.width = ddraw->width;
ddraw->cursorclip.height = ddraw->height;
ddraw->cursor.x = ddraw->width / 2;
ddraw->cursor.y = ddraw->height / 2;
}
}
for(i=0; i<ddraw->height; i++)