Fixed parameter names of PatBlt.

svn path=/trunk/; revision=7145
This commit is contained in:
Filip Navara 2003-12-20 21:43:01 +00:00
parent 67839ab422
commit 188c654673

View file

@ -340,9 +340,9 @@ SetPixel(HDC hDC,
* @implemented
*/
BOOL STDCALL
PatBlt(HDC hDC, INT Top, INT Left, INT Width, INT Height, ULONG Rop)
PatBlt(HDC hDC, INT Left, INT Top, INT Width, INT Height, ULONG Rop)
{
return(NtGdiPatBlt(hDC, Top, Left, Width, Height, Rop));
return NtGdiPatBlt(hDC, Left, Top, Width, Height, Rop);
}
/*