removed an extraneous return value from a void routine

This commit is contained in:
Richard Allen 2002-02-04 02:05:28 +00:00
parent 8d1a012b8d
commit c9e52d8730

View file

@ -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);
} }
} }
} }