ddraw/tests: Don't crash on win9x.
This commit is contained in:
parent
36d6310599
commit
f076d79c6c
|
@ -286,7 +286,7 @@ static void testcooperativelevels_normal(void)
|
||||||
rc = IDirectDraw_CreateSurface(lpDD, &surfacedesc, &surface, NULL);
|
rc = IDirectDraw_CreateSurface(lpDD, &surfacedesc, &surface, NULL);
|
||||||
ok(rc == DDERR_NOEXCLUSIVEMODE, "IDirectDraw_CreateSurface returned %08x\n", rc);
|
ok(rc == DDERR_NOEXCLUSIVEMODE, "IDirectDraw_CreateSurface returned %08x\n", rc);
|
||||||
ok(surface == NULL, "Returned surface pointer is %p\n", surface);
|
ok(surface == NULL, "Returned surface pointer is %p\n", surface);
|
||||||
if(surface) IDirectDrawSurface_Release(surface);
|
if(surface && surface != (IDirectDrawSurface *)0xdeadbeef) IDirectDrawSurface_Release(surface);
|
||||||
|
|
||||||
/* Set the focus window */
|
/* Set the focus window */
|
||||||
rc = IDirectDraw_SetCooperativeLevel(lpDD,
|
rc = IDirectDraw_SetCooperativeLevel(lpDD,
|
||||||
|
|
Loading…
Reference in New Issue