diff options
author | Tim Angus <tim@ngus.net> | 2005-06-27 00:25:17 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2005-06-27 00:25:17 +0000 |
commit | dcce2065d01d3e4b175fcb4efe8ad2aa787c8c05 (patch) | |
tree | 376a9ad66e1dfe748ca3422a9bd5f7693b282cdd /src/game/g_physics.c | |
parent | 2225bfe3b44d5f73976cc3aa17e1aa766fc57148 (diff) |
* Fixed all the warnings reported after turning on -Wall
Diffstat (limited to 'src/game/g_physics.c')
-rw-r--r-- | src/game/g_physics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_physics.c b/src/game/g_physics.c index 856fcadb..63abaf9e 100644 --- a/src/game/g_physics.c +++ b/src/game/g_physics.c @@ -28,7 +28,7 @@ static void G_Bounce( gentity_t *ent, trace_t *trace ) float dot; int hitTime; float minNormal; - qboolean invert; + qboolean invert = qfalse; // reflect the velocity on the trace plane hitTime = level.previousTime + ( level.time - level.previousTime ) * trace->fraction; |