From 056084263563ae22e6686822a5ed6b1e8e14f36c Mon Sep 17 00:00:00 2001 From: Spoike Date: Fri, 14 Apr 2006 01:55:12 +0000 Subject: [PATCH] Prevent 8bpp opengl. I hate you Up2nOgOoD[ROCK]. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2203 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/gl/gl_vidnt.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/engine/gl/gl_vidnt.c b/engine/gl/gl_vidnt.c index 17a3a83ee..27f2a3fc1 100644 --- a/engine/gl/gl_vidnt.c +++ b/engine/gl/gl_vidnt.c @@ -452,6 +452,11 @@ qboolean VID_SetFullDIBMode (rendererstate_t *info) if (info->rate) gdevmode.dmFields |= DM_DISPLAYFREQUENCY; gdevmode.dmBitsPerPel = info->bpp; + if (info->bpp && (gdevmode.dmBitsPerPel < 15)) + { + Con_Printf("Forcing at least 16bpp\n"); + gdevmode.dmBitsPerPel = 16; + } gdevmode.dmDisplayFrequency = info->rate; gdevmode.dmPelsWidth = info->width; gdevmode.dmPelsHeight = info->height;