From: havoc Date: Tue, 1 Mar 2011 05:33:58 +0000 (+0000) Subject: fix two typos (one a compile error, one a code error) X-Git-Tag: xonotic-v0.5.0~425^2~28 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=7643f312a487880def74d89da341ac68667c3879;p=xonotic%2Fdarkplaces.git fix two typos (one a compile error, one a code error) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10875 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/r_shadow.c b/r_shadow.c index 33818cb1..0b151fc1 100644 --- a/r_shadow.c +++ b/r_shadow.c @@ -2517,9 +2517,9 @@ static void R_Shadow_UpdateBounceGridTexture(void) // scale down shot color by bounce intensity and texture color (or 50% if no texture reported) VectorScale(shotcolor, r_shadow_bouncegrid_particlebounceintensity.value, shotcolor); if (cliptrace.hittexture && cliptrace.hittexture->currentskinframe) - VectorMultiply(shotcolor, rsurface.texture->currentskinframe->avgcolor, shotcolor); + VectorMultiply(shotcolor, cliptrace.hittexture->currentskinframe->avgcolor, shotcolor); else - VectorScale(shotcolor, 0.5f->avgcolor, shotcolor); + VectorScale(shotcolor, 0.5f, shotcolor); if (VectorLength2(shotcolor) < 3.0f) break; r_refdef.stats.bouncegrid_bounces++;