Commit 5ffb0889 authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Alexandre Julliard

wined3d: Fix depth blit regression.

parent c62dd29b
...@@ -158,9 +158,9 @@ static void surface_get_blt_info(GLenum target, const RECT *rect_in, GLsizei w, ...@@ -158,9 +158,9 @@ static void surface_get_blt_info(GLenum target, const RECT *rect_in, GLsizei w,
else else
{ {
rect.left = 0; rect.left = 0;
rect.top = 0; rect.top = h;
rect.right = w; rect.right = w;
rect.bottom = h; rect.bottom = 0;
} }
switch (target) switch (target)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment