winex11.drv: Downgrade an ERR to a WARN.

This commit is contained in:
Austin English 2009-11-18 14:09:20 -06:00 committed by Alexandre Julliard
parent 8fe8d61a62
commit a3cf7a4e06

View file

@ -144,7 +144,7 @@ BOOL CDECL X11DRV_CreateBitmap( X11DRV_PDEVICE *physDev, HBITMAP hbitmap, LPVOID
/* check if bpp is compatible with screen depth */
if (!((bitmap.bmBitsPixel == 1) || (bitmap.bmBitsPixel == screen_bpp)))
{
ERR("Trying to make bitmap with planes=%d, bpp=%d\n",
WARN("Trying to make bitmap with planes=%d, bpp=%d\n",
bitmap.bmPlanes, bitmap.bmBitsPixel);
return FALSE;
}