Warning fixes

This commit is contained in:
Richard Allen 2011-04-01 16:38:50 +00:00
parent 8d7859931b
commit a350a527c7
4 changed files with 6 additions and 6 deletions

View file

@ -1008,10 +1008,10 @@ static float CG_DrawTimer(float y)
int mins, seconds, tens;
int msec;
int x = 0;
float Color[4];
// float Color[4];
const int expand = 4;
const int corner = 12;
// const int corner = 12;
const float shadowAlpha = 0.75f;
y += 4;

View file

@ -462,8 +462,8 @@ qboolean G_MoverPush(gentity_t * pusher, vec3_t move, vec3_t amove, gentity_t **
pushed_t *p;
int entityList[MAX_GENTITIES];
int listedEntities;
float deltaTime;
float phase;
// float deltaTime;
// float phase;
vec3_t totalMins, totalMaxs;
*obstacle = NULL;

View file

@ -2061,7 +2061,7 @@ void RB_SetGL2D_Ex(int x, int y, int width, int height);
void RB_SetGL2D_Level(int level);
void RB_SetGL2D(void);
void RB_FBO_Blit();
void RB_FBO_Blit(void);
void RB_PostProcess( void );

View file

@ -346,7 +346,7 @@ static void RB_Blur(void)
float w, h, w2, h2, w4, h4;
float mul = 1.f;
float factor = Com_Clamp(0.f, 1.f, backEnd.refdef.blurFactor);
int i;
// int i;
if (factor <= 0.f)
return;