Fixed invalid arguments for gdi_resize_ex

This commit is contained in:
Armin Novak 2016-10-18 15:16:58 +02:00
parent 20344f28a5
commit 30b5b01cf1
1 changed files with 1 additions and 1 deletions

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,