winex11.drv: Remove an incorrect FIXME.

This commit is contained in:
Dmitry Timoshkov 2008-01-25 20:25:10 +08:00 committed by Alexandre Julliard
parent a30327afef
commit 27d3c09a39
1 changed files with 3 additions and 6 deletions

View File

@ -498,13 +498,10 @@ static BOOL process_attach(void)
break; break;
case 15: case 15:
/* Out tests suggest that windows does not support 15 bpp color depth. /* In GetDeviceCaps MSDN description explicitly states that
* X11 does, what should we do with these situations? * in 15 bpp mode 16 is returned.
*/ */
FIXME("The X server is running at 15 bpp color depth\n"); /* fall through */
screen_bpp = 15;
break;
case 16: case 16:
screen_bpp = 16; screen_bpp = 16;
break; break;