From 51ca0b6a418e7719c00152e8a5bb4a434be12a01 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 2 Mar 2001 23:41:50 +0000 Subject: [PATCH] missed this in the previous checkin --- include/progs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/progs.h b/include/progs.h index 2203d36d9..359eae4ed 100644 --- a/include/progs.h +++ b/include/progs.h @@ -123,7 +123,7 @@ int NUM_FOR_EDICT(progs_t *pr, edict_t *e); #define G_INT(p,o) G_var (p, o, int) #define G_EDICT(p,o) ((edict_t *)(PR_edicts (p) + G_INT (p, o))) #define G_EDICTNUM(p,o) NUM_FOR_EDICT(p, G_EDICT(p, o)) -#define G_VECTOR(p,o) (&G_FLOAT (p, o)) +#define G_VECTOR(p,o) G_var (p, o, vector) #define G_STRING(p,o) PR_GetString (p, G_var (p, o, string)) #define G_FUNCTION(p,o) G_var (p, o, func)