mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-10 15:21:44 +00:00
removed an extraneous return value from a void routine
This commit is contained in:
parent
8d1a012b8d
commit
c9e52d8730
1 changed files with 5 additions and 2 deletions
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.10 2002/02/04 02:05:28 jbravo
|
||||
// removed an extraneous return value from a void routine
|
||||
//
|
||||
// Revision 1.9 2002/02/04 00:31:40 niceass
|
||||
// oops =D
|
||||
//
|
||||
|
@ -64,7 +67,7 @@ void PM_StepSlideMove_ ( void ) {
|
|||
if (trace.allsolid) {
|
||||
// entity is completely trapped in another solid
|
||||
pm->ps->velocity[2] = 0; // don't build up falling damage, but allow sideways acceleration
|
||||
return qtrue;
|
||||
return; // qtrue;
|
||||
}
|
||||
|
||||
if (trace.fraction > 0) {
|
||||
|
@ -227,4 +230,4 @@ void PM_StepSlideMove ( qboolean gravity )
|
|||
Com_Printf("%d:stepped\n", c_pmove);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue