gdiplus/tests: Fix the test for flags of an empty region.
This commit is contained in:
parent
7dfbadec67
commit
9797afd003
|
@ -370,8 +370,8 @@ static void test_getregiondata(void)
|
|||
expect_magic(buf + 6);
|
||||
expect_dword(buf + 7, 0);
|
||||
/* flags 0 means that a path is an array of FLOATs */
|
||||
ok((*(buf + 8) & (~ 0x00004000)) == 0x00000000,
|
||||
"expected 00000000 got %08x\n", *(buf + 8) & (~ 0x00004000));
|
||||
ok(*(buf + 8) == 0x4000 /* before win7 */ || *(buf + 8) == 0,
|
||||
"expected 0x4000 or 0, got %08x\n", *(buf + 8));
|
||||
|
||||
/* Transform an empty region */
|
||||
status = GdipCreateMatrix(&matrix);
|
||||
|
|
Loading…
Reference in New Issue