diff options
Diffstat (limited to 'code/qcommon/msg.c')
-rw-r--r-- | code/qcommon/msg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/qcommon/msg.c b/code/qcommon/msg.c index e743597..b26cf8f 100644 --- a/code/qcommon/msg.c +++ b/code/qcommon/msg.c @@ -790,7 +790,7 @@ typedef struct { } netField_t; // using the stringizing operator to save typing... -#define NETF(x) #x,(int)&((entityState_t*)0)->x +#define NETF(x) #x,(size_t)&((entityState_t*)0)->x netField_t entityStateFields[] = { @@ -1105,7 +1105,7 @@ plyer_state_t communication */ // using the stringizing operator to save typing... -#define PSF(x) #x,(int)&((playerState_t*)0)->x +#define PSF(x) #x,(size_t)&((playerState_t*)0)->x netField_t playerStateFields[] = { |