mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
Fix net.cpp compilation failure under clang
git-svn-id: https://svn.eduke32.com/eduke32@7353 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b7e524d5d1
commit
94504ee0c3
1 changed files with 3 additions and 3 deletions
|
@ -241,7 +241,7 @@ typedef struct netField_s
|
|||
|
||||
} netField_t;
|
||||
|
||||
#define SECTF(x) #x,(size_t)&((netSector_t*)0)->x
|
||||
#define SECTF(x) #x,(int32_t)(size_t)&((netSector_t*)0)->x
|
||||
|
||||
static netField_t SectorFields[] =
|
||||
{
|
||||
|
@ -280,7 +280,7 @@ static netField_t SectorFields[] =
|
|||
#undef SECTF
|
||||
|
||||
|
||||
#define WALLF(x) #x,(size_t)&((netWall_t*)0)->x
|
||||
#define WALLF(x) #x,(int32_t)(size_t)&((netWall_t*)0)->x
|
||||
|
||||
static netField_t WallFields[] =
|
||||
{
|
||||
|
@ -311,7 +311,7 @@ static netField_t WallFields[] =
|
|||
#undef WALLF
|
||||
|
||||
|
||||
#define ACTF(x) #x,(size_t)&((netactor_t*)0)->x
|
||||
#define ACTF(x) #x,(int32_t)(size_t)&((netactor_t*)0)->x
|
||||
|
||||
static netField_t ActorFields[] =
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue