gdi32/tests: Fix a test failure on NT4.
This commit is contained in:
parent
6376941266
commit
05c50725db
|
@ -161,7 +161,9 @@ static void test_world_transform(void)
|
|||
xform.eDx = 0.0f;
|
||||
xform.eDy = 0.0f;
|
||||
ret = SetWorldTransform(hdc, &xform);
|
||||
ok(!ret, "SetWorldTransform should fail with an invalid xform\n");
|
||||
ok(!ret ||
|
||||
broken(ret), /* NT4 */
|
||||
"SetWorldTransform should fail with an invalid xform\n");
|
||||
|
||||
xform.eM11 = 20.0f;
|
||||
xform.eM12 = 0.0f;
|
||||
|
|
Loading…
Reference in New Issue