ddraw/tests: Fix typos in messages.

This commit is contained in:
Detlef Riekenberg 2007-05-08 05:14:41 +02:00 committed by Alexandre Julliard
parent 6604181c85
commit 00028b0c37
1 changed files with 3 additions and 3 deletions

View File

@ -1810,9 +1810,9 @@ static void SizeTest(void)
dsurface = NULL;
ok(desc.dwFlags & DDSD_WIDTH, "Primary surface doesn't have width set\n");
ok(desc.dwFlags & DDSD_HEIGHT, "Primary surface doesn't have hight set\n");
ok(desc.dwWidth == GetSystemMetrics(SM_CXSCREEN), "Surface Width differs from screen Width\n");
ok(desc.dwHeight == GetSystemMetrics(SM_CYSCREEN), "Surface Width differs from screen Width\n");
ok(desc.dwFlags & DDSD_HEIGHT, "Primary surface doesn't have height set\n");
ok(desc.dwWidth == GetSystemMetrics(SM_CXSCREEN), "Surface width differs from screen width\n");
ok(desc.dwHeight == GetSystemMetrics(SM_CYSCREEN), "Surface height differs from screen height\n");
}
ret = IDirectDraw_SetCooperativeLevel(lpDD, NULL, DDSCL_NORMAL);
ok(ret == DD_OK, "SetCooperativeLevel failed with %08x\n", ret);