Remove the assertion when there is no source surface.
authorLionel Ulmer <lionel.ulmer@free.fr>
Wed, 3 May 2000 17:43:07 +0000 (17:43 +0000)
committerAlexandre Julliard <julliard@winehq.org>
Wed, 3 May 2000 17:43:07 +0000 (17:43 +0000)
dlls/ddraw/dsurface/main.c

index 13d8d6a..265c689 100644 (file)
@@ -221,7 +221,7 @@ HRESULT WINAPI IDirectDrawSurface4Impl_Blt(
            memset(&xsrc,0,sizeof(xsrc));
        }
     }
-    assert(xsrc.bottom <= sdesc.dwHeight);
+    if (src) assert(xsrc.bottom <= sdesc.dwHeight);
     assert(xdst.bottom <= ddesc.dwHeight);
 
     bpp = GET_BPP(ddesc);