user32/tests: Another fix for lack of color cursor support.

This commit is contained in:
Alexandre Julliard 2009-02-16 11:51:44 +01:00
parent cc0a46ad64
commit a069ee48d5
1 changed files with 2 additions and 1 deletions

View File

@ -911,7 +911,8 @@ static void test_CreateIconFromResource(void)
ok(icon_info.fIcon == FALSE, "fIcon != FALSE.\n");
ok(icon_info.xHotspot == 3, "xHotspot is %u.\n", icon_info.xHotspot);
ok(icon_info.yHotspot == 3, "yHotspot is %u.\n", icon_info.yHotspot);
ok(icon_info.hbmColor != NULL, "No hbmColor!\n");
ok(icon_info.hbmColor != NULL || broken(!icon_info.hbmColor) /* no color cursor support */,
"No hbmColor!\n");
ok(icon_info.hbmMask != NULL, "No hbmMask!\n");
}