From: Steven Edwards Date: Sun, 30 Dec 2001 04:35:55 +0000 (+0000) Subject: updated gditest.c X-Git-Tag: ReactOS-0.0.19~192 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=0c57ecc79fd15b99d9734d86a0289fca92487538 updated gditest.c Thanks to Richard Campbell svn path=/trunk/; revision=2450 --- diff --git a/reactos/apps/tests/gditest/gditest.c b/reactos/apps/tests/gditest/gditest.c index d4960eaab9a..fa63aedcc95 100644 --- a/reactos/apps/tests/gditest/gditest.c +++ b/reactos/apps/tests/gditest/gditest.c @@ -1,5 +1,6 @@ /* * gditest + dec 26, 2001 -- gditest bug fix by Richard Campbell */ #include @@ -63,7 +64,7 @@ int main (void) LineTo(Desktop, 200, 50); WhitePen = CreatePen(PS_SOLID, 3, RGB(0xff, 0xff, 0xff)); - SelectObject(Desktop, GreenPen); + SelectObject(Desktop, WhitePen); MoveToEx(Desktop, 20, 70, NULL); LineTo(Desktop, 500, 70); @@ -123,7 +124,7 @@ int main (void) LineTo(DC24, 100, 110); BitBlt(Desktop, 200, 200, 110, 120, DC24, 0, 0, SRCCOPY); - Sleep( 990000 ); // fixme delay only 10000 (for 10 seconds) + Sleep( 10000 ); // fixme delay only 10000 (for 10 seconds) // Free up everything DeleteDC(Desktop); DeleteDC(MyDC);