mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 01:10:51 +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;
|
} 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[] =
|
static netField_t SectorFields[] =
|
||||||
{
|
{
|
||||||
|
@ -280,7 +280,7 @@ static netField_t SectorFields[] =
|
||||||
#undef SECTF
|
#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[] =
|
static netField_t WallFields[] =
|
||||||
{
|
{
|
||||||
|
@ -311,7 +311,7 @@ static netField_t WallFields[] =
|
||||||
#undef WALLF
|
#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[] =
|
static netField_t ActorFields[] =
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue