Commit a3cf7a4e authored by Austin English's avatar Austin English Committed by Alexandre Julliard

winex11.drv: Downgrade an ERR to a WARN.

parent 8fe8d61a
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment