Modified: trunk/darkplaces/gl_rmain.c
===================================================================
--- trunk/darkplaces/gl_rmain.c	2008-12-06 20:12:41 UTC (rev 8568)
+++ trunk/darkplaces/gl_rmain.c	2008-12-06 20:17:40 UTC (rev 8569)
@@ -6534,6 +6534,11 @@
 				c[3] = 1;
 			}
 
+			// brighten it up (as texture value 127 means "unlit")
+			c[0] *= 2;
+			c[1] *= 2;
+			c[2] *= 2;
+
 			if (rsurface.texture->currentskinframe->pants || rsurface.texture->currentskinframe->shirt)
 			{
 				c[0] = rsurface.colormap_pantscolor[0] * 0.3 + rsurface.colormap_shirtcolor[0] * 0.7;

