diff options
author | Roman Tetelman <kevlarman@gmail.com> | 2009-10-03 11:51:37 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:27 +0000 |
commit | 9b3c15abfc5881f1b949e5fe48bca29640c1f129 (patch) | |
tree | a15b99e70ab8fef2fd72c169700daaf22f435a7f /src/game | |
parent | 41a892148fc739c1497c8fd01a862a9d49ae69dd (diff) |
fix stupid mistake to shut up compiler warning
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/bg_pmove.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index a45b4b65..278aab21 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -659,7 +659,7 @@ static qboolean PM_CheckWallJump( void ) } } else - return; + return qfalse; if( pm->ps->pm_flags & PMF_RESPAWNED ) return qfalse; // don't allow jump until all buttons are up @@ -2172,7 +2172,6 @@ PM_GroundTrace static void PM_GroundTrace( void ) { vec3_t point; - vec3_t movedir; vec3_t refNormal = { 0.0f, 0.0f, 1.0f }; trace_t trace; |