[GDI32_APITEST]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 28 Feb 2011 20:04:10 +0000 (20:04 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 28 Feb 2011 20:04:10 +0000 (20:04 +0000)
Fix a bug

svn path=/trunk/; revision=50938

rostests/apitests/gdi32/MaskBlt.c

index 1103a5a..3226664 100644 (file)
@@ -140,8 +140,8 @@ START_TEST(MaskBlt)
     Test_MaskBlt_1bpp();
     switch (GetDeviceCaps(GetDC(NULL), BITSPIXEL))
     {
-        case 16: Test_MaskBlt_16bpp();
-        case 32: Test_MaskBlt_32bpp();
+        case 16: Test_MaskBlt_16bpp(); break;
+        case 32: Test_MaskBlt_32bpp(); break;
     }
     
 }