wined3d: Fix depth blit regression.

oldstable
Roderick Colenbrander 2010-03-21 16:42:03 +01:00 committed by Alexandre Julliard
parent c62dd29b37
commit 5ffb088975
1 changed files with 2 additions and 2 deletions

View File

@ -158,9 +158,9 @@ static void surface_get_blt_info(GLenum target, const RECT *rect_in, GLsizei w,
else
{
rect.left = 0;
rect.top = 0;
rect.top = h;
rect.right = w;
rect.bottom = h;
rect.bottom = 0;
}
switch (target)