From 604e398e661099f7ebfd9c1a5347cac51cac5b6a Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 11 Feb 2001 07:19:59 +0000 Subject: [PATCH] clean out dead code --- source/pmove.c | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/source/pmove.c b/source/pmove.c index d9f1a4e..4eec02c 100644 --- a/source/pmove.c +++ b/source/pmove.c @@ -54,18 +54,6 @@ vec3_t forward, right, up; vec3_t player_mins = { -16, -16, -24 }; vec3_t player_maxs = { 16, 16, 32 }; -/* FIXME: Delete this? -#define PM_GRAVITY 800 -#define PM_STOPSPEED 100 -#define PM_MAXSPEED 320 -#define PM_SPECTATORMAXSPEED 500 -#define PM_ACCELERATE 10 -#define PM_AIRACCELERATE 0.7 -#define PM_WATERACCELERATE 10 -#define PM_FRICTION 6 -#define PM_WATERFRICTION 1 - */ - void PM_InitBoxHull (void); void PM_CategorizePosition (void); @@ -536,8 +524,6 @@ PM_WaterMove (void) } PM_FlyMove (); -// if (pmove.waterjumptime) -// Con_Printf ("<-wm%f, %f, %f\n", pmove.velocity[0], pmove.velocity[1], pmove.velocity[2]); } @@ -576,8 +562,6 @@ PM_AirMove (void) VectorScale (wishvel, movevars.maxspeed / wishspeed, wishvel); wishspeed = movevars.maxspeed; } -// if (pmove.waterjumptime) -// Con_Printf ("am->%f, %f, %f\n", pmove.velocity[0], pmove.velocity[1], pmove.velocity[2]); if (onground != -1) { pmove.velocity[2] = 0; @@ -611,15 +595,6 @@ PM_AirMove (void) } } } - -//Con_Printf("airmove:vec: %4.2f %4.2f %4.2f\n", -// pmove.velocity[0], -// pmove.velocity[1], -// pmove.velocity[2]); -// - -// if (pmove.waterjumptime) -// Con_Printf ("<-am%f, %f, %f\n", pmove.velocity[0], pmove.velocity[1], pmove.velocity[2]); }