Fix the problem with water and sprites acting funny with lerping

on...stupid, stupid bug.
This commit is contained in:
Jeff Teunissen 2000-12-18 10:53:38 +00:00
parent 8c90357234
commit fea862d434
1 changed files with 10 additions and 2 deletions

View File

@ -136,9 +136,9 @@ extern qboolean lighthalf;
// LordHavoc: place for gl_rmain setup code
void
glrmain_init ()
glrmain_init (void)
{
};
}
/*
GL_CheckBrightness
@ -444,6 +444,9 @@ GL_DrawAliasBlendedFrame (aliashdr_t *paliashdr, int pose1, int pose2, float ble
order = (int *) ((byte *) paliashdr + paliashdr->commands);
if (modelalpha != 1.0)
glDepthMask (GL_FALSE);
while ((count = *order++)) {
// get the vertex count and primitive type
@ -482,6 +485,11 @@ GL_DrawAliasBlendedFrame (aliashdr_t *paliashdr, int pose1, int pose2, float ble
} while (--count);
glEnd ();
}
if (modelalpha != 1.0)
glDepthMask (GL_TRUE);
glColor3ubv (lighthalf_v);
}
/*