mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-13 00:24:29 +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$
|
// $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
|
// Revision 1.9 2002/02/04 00:31:40 niceass
|
||||||
// oops =D
|
// oops =D
|
||||||
//
|
//
|
||||||
|
@ -64,7 +67,7 @@ void PM_StepSlideMove_ ( void ) {
|
||||||
if (trace.allsolid) {
|
if (trace.allsolid) {
|
||||||
// entity is completely trapped in another solid
|
// entity is completely trapped in another solid
|
||||||
pm->ps->velocity[2] = 0; // don't build up falling damage, but allow sideways acceleration
|
pm->ps->velocity[2] = 0; // don't build up falling damage, but allow sideways acceleration
|
||||||
return qtrue;
|
return; // qtrue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (trace.fraction > 0) {
|
if (trace.fraction > 0) {
|
||||||
|
@ -227,4 +230,4 @@ void PM_StepSlideMove ( qboolean gravity )
|
||||||
Com_Printf("%d:stepped\n", c_pmove);
|
Com_Printf("%d:stepped\n", c_pmove);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue