Module: wine Branch: master Commit: 27d3c09a39a6a2a19fac28537b9c8f213075b284 URL: http://source.winehq.org/git/wine.git/?a=commit;h=27d3c09a39a6a2a19fac28537b...
Author: Dmitry Timoshkov dmitry@codeweavers.com Date: Fri Jan 25 20:25:10 2008 +0800
winex11.drv: Remove an incorrect FIXME.
---
dlls/winex11.drv/x11drv_main.c | 9 +++------ 1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/dlls/winex11.drv/x11drv_main.c b/dlls/winex11.drv/x11drv_main.c index f2bf12c..8d822ef 100644 --- a/dlls/winex11.drv/x11drv_main.c +++ b/dlls/winex11.drv/x11drv_main.c @@ -498,13 +498,10 @@ static BOOL process_attach(void) break;
case 15: - /* Out tests suggest that windows does not support 15 bpp color depth. - * X11 does, what should we do with these situations? + /* In GetDeviceCaps MSDN description explicitly states that + * in 15 bpp mode 16 is returned. */ - FIXME("The X server is running at 15 bpp color depth\n"); - screen_bpp = 15; - break; - + /* fall through */ case 16: screen_bpp = 16; break;