From 3771341774abcc1cef5d970ae21daeb301262d98 Mon Sep 17 00:00:00 2001 From: Roderick Colenbrander Date: Fri, 21 Mar 2008 23:23:58 +0000 Subject: [PATCH] wined3d: Add a missing break to blt_to_drawable. --- dlls/wined3d/surface.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/wined3d/surface.c b/dlls/wined3d/surface.c index 413d3afaaa9..ed98a331a0a 100644 --- a/dlls/wined3d/surface.c +++ b/dlls/wined3d/surface.c @@ -3871,6 +3871,7 @@ static inline void surface_blt_to_drawable(IWineD3DSurfaceImpl *This, const RECT coords[1].x = 1; coords[1].y = -1; coords[1].z = -1; coords[2].x = 1; coords[2].y = -1; coords[2].z = -1; coords[3].x = -1; coords[3].y = -1; coords[3].z = -1; + break; default: ERR("Unexpected texture target\n"); -- 2.11.4.GIT