- except for DWORD, all homegrown integer types are gone - a handful were left where they represent genuine Windows types.

This commit is contained in:
Christoph Oelckers 2017-03-09 19:54:41 +01:00
commit d2beacfc5f
136 changed files with 770 additions and 774 deletions

View file

@ -429,7 +429,7 @@ int FWadCollection::CheckNumForName (const char *name, int space)
union
{
char uname[8];
QWORD qname;
uint64_t qname;
};
uint32_t i;
@ -475,7 +475,7 @@ int FWadCollection::CheckNumForName (const char *name, int space, int wadnum, bo
union
{
char uname[8];
QWORD qname;
uint64_t qname;
};
uint32_t i;
@ -1060,7 +1060,7 @@ int FWadCollection::FindLump (const char *name, int *lastlump, bool anyns)
union
{
char name8[8];
QWORD qname;
uint64_t qname;
};
LumpRecord *lump_p;