mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Kludge: draw within screen until we have clipping working
svn path=/trunk/; revision=2328
This commit is contained in:
parent
7e2973b768
commit
af347caa8c
1 changed files with 2 additions and 2 deletions
|
@ -17,12 +17,12 @@ void __stdcall Background (HDC Desktop)
|
|||
|
||||
MoveToEx (Desktop, 0, 0, NULL);
|
||||
LineTo (Desktop, 640, 480);
|
||||
for (y = 480, x = 0; x < 640; x+=2)
|
||||
for (y = 479, x = 0; x < 640; x+=2)
|
||||
{
|
||||
MoveToEx (Desktop, 0, 0, NULL);
|
||||
LineTo (Desktop, x, y);
|
||||
}
|
||||
for (y = 0, x = 640; y < 480; y+=2)
|
||||
for (y = 0, x = 639; y < 480; y+=2)
|
||||
{
|
||||
MoveToEx (Desktop, 0, 0, NULL);
|
||||
LineTo (Desktop, x, y);
|
||||
|
|
Loading…
Reference in a new issue