mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-10 23:32:06 +00:00
Fixing warnings about uninitialised variables
This commit is contained in:
parent
1636390bc0
commit
eca9eff0e8
1 changed files with 1 additions and 1 deletions
|
@ -591,7 +591,7 @@ void CG_PredictPlayerState(void)
|
||||||
usercmd_t oldestCmd;
|
usercmd_t oldestCmd;
|
||||||
usercmd_t latestCmd;
|
usercmd_t latestCmd;
|
||||||
// JBravo: unlagged
|
// JBravo: unlagged
|
||||||
int stateIndex, predictCmd;
|
int stateIndex = 0, predictCmd = 0;
|
||||||
int numPredicted = 0, numPlayedBack = 0;
|
int numPredicted = 0, numPlayedBack = 0;
|
||||||
|
|
||||||
cg.hyperspace = qfalse; // will be set if touching a trigger_teleport
|
cg.hyperspace = qfalse; // will be set if touching a trigger_teleport
|
||||||
|
|
Loading…
Reference in a new issue