summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorM. Kristall <mkpdev@gmail.com>2009-10-03 13:00:43 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:16:24 +0000
commitf3913e0511f9c8cbc97aee61e3a9aa8368714eaa (patch)
tree58d79eaeb3ed3a37098f799c270805ae25df807f /src/game
parentc3e4154733077de1cd2a5467ae54635ed5ebb602 (diff)
* Fix an annoying warning
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_local.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h
index 8e1a31d1..ce59a70b 100644
--- a/src/game/g_local.h
+++ b/src/game/g_local.h
@@ -1031,7 +1031,7 @@ void G_DeletePTRConnection( connectionRecord_t *connection );
extern level_locals_t level;
extern gentity_t g_entities[ MAX_GENTITIES ];
-#define FOFS(x) ((int)&(((gentity_t *)0)->x))
+#define FOFS(x) ((size_t)&(((gentity_t *)0)->x))
extern vmCvar_t g_dedicated;
extern vmCvar_t g_cheats;