From a848638e2a35353d085b1c05fcc8873c41a9bc3b Mon Sep 17 00:00:00 2001 From: Walter Julius Hennecke Date: Mon, 10 Nov 2014 21:06:20 +0100 Subject: [PATCH] updates to g_missile.c --- code/game/g_missile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/g_missile.c b/code/game/g_missile.c index 0e7a3b0..77e1dce 100644 --- a/code/game/g_missile.c +++ b/code/game/g_missile.c @@ -8,7 +8,7 @@ #include "g_combat.h" #include "g_syscalls.h" -#define MISSILE_PRESTEP_TIME 50 +static const uint8_t MISSILE_PRESTEP_TIME = 50; // ick // TODO: create g_weapon.h @@ -148,7 +148,7 @@ G_MissileStick ================ */ -#define GRENADE_ALT_STICK_TIME 2500 +static const uint16_t GRENADE_ALT_STICK_TIME = 2500; static void G_MissileStick( gentity_t* ent, trace_t* trace ) { vec3_t org = { 0, 0, 0 };