- 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

@ -2057,6 +2057,6 @@ sector_t *P_PointInSectorBuggy(double x, double y)
node = (node_t *)node->children[R_PointOnSideSlow(x, y, node)];
} while (!((size_t)node & 1));
subsector_t *ssec = (subsector_t *)((BYTE *)node - 1);
subsector_t *ssec = (subsector_t *)((uint8_t *)node - 1);
return ssec->sector;
}