- replaced the homegrown integer types in all p* sources and headers.

This commit is contained in:
Christoph Oelckers 2017-03-08 15:20:00 +01:00
commit ad41b23506
37 changed files with 487 additions and 487 deletions

View file

@ -65,11 +65,11 @@ void P_TranslateLineDef (line_t *ld, maplinedef_t *mld, int lineindexforid)
{
unsigned short special = (unsigned short) LittleShort(mld->special);
short tag = LittleShort(mld->tag);
DWORD flags = LittleShort(mld->flags);
uint32_t flags = LittleShort(mld->flags);
INTBOOL passthrough = 0;
DWORD flags1 = flags;
DWORD newflags = 0;
uint32_t flags1 = flags;
uint32_t newflags = 0;
for(int i=0;i<16;i++)
{
@ -223,7 +223,7 @@ void P_TranslateLineDef (line_t *ld, maplinedef_t *mld, int lineindexforid)
FBoomArg *arg = &b->Args[j];
int *destp;
int flagtemp;
BYTE val = 0; // quiet, GCC
uint8_t val = 0; // quiet, GCC
bool found;
if (arg->ArgNum < 4)