wined3d: Check for a destination clipper in IWineD3DBaseSurfaceImpl_Blt().

This check was there in the original ddraw code, but apparently got lost
during the ddraw rewrite in 2006.
This commit is contained in:
Henri Verbeet 2010-05-20 09:12:18 +02:00 committed by Alexandre Julliard
parent 1d79e5de9a
commit becf8dc828
1 changed files with 1 additions and 1 deletions

View File

@ -1009,7 +1009,7 @@ HRESULT WINAPI IWineD3DBaseSurfaceImpl_Blt(IWineD3DSurface *iface, const RECT *D
/* For the Destination rect, it can be out of bounds on the condition that a clipper
* is set for the given surface.
*/
if ((/*This->clipper == NULL*/ TRUE) && (DestRect) &&
if (!This->clipper && DestRect &&
((DestRect->bottom > This->currentDesc.Height)||(DestRect->bottom < 0) ||
(DestRect->top > This->currentDesc.Height)||(DestRect->top < 0) ||
(DestRect->left > This->currentDesc.Width) ||(DestRect->left < 0) ||