Fix gcc warnings in Rend2.

This commit is contained in:
Zack Middleton 2012-10-26 03:56:45 +00:00
parent f4ca81c206
commit 3814f04a8a
3 changed files with 5 additions and 4 deletions

View file

@ -1342,7 +1342,8 @@ static void RB_IterateStagesGeneric( shaderCommands_t *input )
for ( stage2 = stage + 1; stage2 < MAX_SHADER_STAGES; stage2++ )
{
shaderStage_t *pStage2 = input->xstages[stage2];
unsigned int srcBlendBits, dstBlendBits;
unsigned int srcBlendBits;
//unsigned int dstBlendBits;
if ( !pStage2 )
{
@ -1350,7 +1351,7 @@ static void RB_IterateStagesGeneric( shaderCommands_t *input )
}
srcBlendBits = pStage2->stateBits & GLS_SRCBLEND_BITS;
dstBlendBits = pStage2->stateBits & GLS_DSTBLEND_BITS;
//dstBlendBits = pStage2->stateBits & GLS_DSTBLEND_BITS;
if (srcBlendBits == GLS_SRCBLEND_DST_COLOR)
{