ddraw/tests: Fix a typo.

This commit is contained in:
Henri Verbeet 2010-11-29 23:08:36 +01:00 committed by Alexandre Julliard
parent c82aa505e9
commit 8c2416941e
1 changed files with 1 additions and 1 deletions

View File

@ -2370,7 +2370,7 @@ static void SizeTest(void)
desc.ddsCaps.dwCaps |= DDSCAPS_OFFSCREENPLAIN;
desc.dwWidth = 128;
ret = IDirectDraw_CreateSurface(lpDD, &desc, &dsurface, NULL);
ok(ret == DDERR_INVALIDPARAMS, "Creating an offscreen plain surface without hight info returned %08x\n", ret);
ok(ret == DDERR_INVALIDPARAMS, "Creating an offscreen plain surface without height info returned %08x\n", ret);
if(dsurface)
{
IDirectDrawSurface_Release(dsurface);