From e67690a1a9da0c020fd9404c399724edab5c2cc4 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 16 Dec 2011 09:21:39 +0900 Subject: [PATCH] Restore the missing lightmaps in non-mtex mode. I forgot to blend in the lightmaps in the fogless non-mtex path. --- libs/video/renderer/gl/gl_rsurf.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/video/renderer/gl/gl_rsurf.c b/libs/video/renderer/gl/gl_rsurf.c index ecb169d3d..9c49b1a91 100644 --- a/libs/video/renderer/gl/gl_rsurf.c +++ b/libs/video/renderer/gl/gl_rsurf.c @@ -730,6 +730,9 @@ R_DrawWorld (void) // or we're not doing fog DrawTextureChains (1, 1); + if (gl_mtex_active_tmus <= 1) + R_BlendLightmaps (); + if (gl_fb_bmodels->int_val && !gl_mtex_fullbright) R_RenderFullbrights (); } else {