mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
Fix some warnings in recent gcc.
gcc seems to be getting ever more picky (which is good, really)
This commit is contained in:
parent
1ae2e46dd8
commit
628bd1367e
1 changed files with 2 additions and 2 deletions
|
@ -131,7 +131,7 @@ qboolean
|
|||
SV_RunThink (edict_t *ent)
|
||||
{
|
||||
float thinktime;
|
||||
float oldframe;
|
||||
//FIXME float oldframe;
|
||||
|
||||
do {
|
||||
thinktime = SVfloat (ent, nextthink);
|
||||
|
@ -142,7 +142,7 @@ SV_RunThink (edict_t *ent)
|
|||
thinktime = sv.time; // don't let things stay in the past.
|
||||
// it is possible to start that way
|
||||
// by a trigger with a local time.
|
||||
oldframe = SVfloat (ent, frame);
|
||||
//FIXME oldframe = SVfloat (ent, frame);
|
||||
|
||||
SVfloat (ent, nextthink) = 0;
|
||||
*sv_globals.time = thinktime;
|
||||
|
|
Loading…
Reference in a new issue