From: havoc Date: Thu, 7 Nov 2002 20:38:57 +0000 (+0000) Subject: don't allow stencil without bitsperpixel 32 X-Git-Tag: RELEASE_0_2_0_RC1~84 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=cafb444b9e7458bc652c7ad9036a19f3cd273b44 don't allow stencil without bitsperpixel 32 git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2605 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/vid_shared.c b/vid_shared.c index 2743742d..6cf000ac 100644 --- a/vid_shared.c +++ b/vid_shared.c @@ -541,6 +541,12 @@ void VID_Open(void) Cvar_SetValueQuick(&vid_stencil, 1); } + if (vid_stencil.integer && vid_bitsperpixel.integer != 32) + { + Con_Printf("vid_stencil not allowed without vid_bitsperpixel 32, turning off vid_stencil\n"); + Cvar_SetValueQuick(&vid_stencil, 0); + } + Con_Printf("Starting video system\n"); if (!VID_Mode(vid_fullscreen.integer, vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_stencil.integer)) {