From 188c65467343678cb0e34efd66ff8b189ebd81e8 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Sat, 20 Dec 2003 21:43:01 +0000 Subject: [PATCH] Fixed parameter names of PatBlt. svn path=/trunk/; revision=7145 --- reactos/lib/gdi32/objects/bitblt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/gdi32/objects/bitblt.c b/reactos/lib/gdi32/objects/bitblt.c index 53c93236b63..100eaf76927 100644 --- a/reactos/lib/gdi32/objects/bitblt.c +++ b/reactos/lib/gdi32/objects/bitblt.c @@ -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); } /*