Merge pull request #3569 from akallabeth/gdi_resize_fix

Fixed invalid arguments for gdi_resize_ex
This commit is contained in:
Martin Fleisz 2016-10-18 15:45:15 +02:00 committed by GitHub
commit fc3bda8e7b

View File

@ -1124,7 +1124,7 @@ fail_primary:
BOOL gdi_resize(rdpGdi* gdi, UINT32 width, UINT32 height)
{
return gdi_resize_ex(gdi, width, height, -1, -1, NULL, NULL);
return gdi_resize_ex(gdi, width, height, 0, 0, NULL, NULL);
}
BOOL gdi_resize_ex(rdpGdi* gdi, UINT32 width, UINT32 height,