- except for DWORD, all homegrown integer types are gone - a handful were left where they represent genuine Windows types.
This commit is contained in:
parent
c008ddaf66
commit
d2beacfc5f
136 changed files with 770 additions and 774 deletions
|
|
@ -69,7 +69,7 @@ struct FGLLinePortal
|
|||
extern TArray<FPortal *> portals;
|
||||
extern TArray<FGLLinePortal*> linePortalToGL;
|
||||
|
||||
extern TArray<BYTE> currentmapsection;
|
||||
extern TArray<uint8_t> currentmapsection;
|
||||
|
||||
void gl_InitPortals();
|
||||
void gl_BuildPortalCoverage(FPortalCoverage *coverage, subsector_t *subsector, const DVector2 &displacement);
|
||||
|
|
|
|||
|
|
@ -296,7 +296,7 @@ struct FCoverageBuilder
|
|||
else
|
||||
{
|
||||
// we reached a subsector so we can link the node with this subsector
|
||||
subsector_t *sub = (subsector_t *)((BYTE *)node - 1);
|
||||
subsector_t *sub = (subsector_t *)((uint8_t *)node - 1);
|
||||
collect.Push(int(sub-subsectors));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue