diff options
Diffstat (limited to 'code/renderer/tr_shade_calc.c')
-rw-r--r-- | code/renderer/tr_shade_calc.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/code/renderer/tr_shade_calc.c b/code/renderer/tr_shade_calc.c index 9e0c06a..15fbe77 100644 --- a/code/renderer/tr_shade_calc.c +++ b/code/renderer/tr_shade_calc.c @@ -1219,14 +1219,13 @@ static void RB_CalcDiffuseColor_scalar( unsigned char *colors ) void RB_CalcDiffuseColor( unsigned char *colors ) { - #if idppc_altivec - extern cvar_t *com_altivec; - if (com_altivec->integer) { - // must be in a seperate function or G3 systems will crash. - RB_CalcDiffuseColor_altivec( colors ); - return; - } - #endif - RB_CalcDiffuseColor_scalar( colors ); +#if idppc_altivec + if (com_altivec->integer) { + // must be in a seperate function or G3 systems will crash. + RB_CalcDiffuseColor_altivec( colors ); + return; + } +#endif + RB_CalcDiffuseColor_scalar( colors ); } |