mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
-fixed warnings
This commit is contained in:
parent
074bce643a
commit
c3eec6db4d
2 changed files with 2 additions and 2 deletions
|
@ -453,7 +453,7 @@ void P_SerializeWorld (FArchive &arc)
|
|||
|
||||
void P_SerializeWorldActors(FArchive &arc)
|
||||
{
|
||||
int i, j;
|
||||
int i;
|
||||
sector_t *sec;
|
||||
|
||||
for (i = 0, sec = sectors; i < numsectors; i++, sec++)
|
||||
|
|
|
@ -893,7 +893,7 @@ void P_SetupPortals()
|
|||
{
|
||||
if (ss.mType == PORTS_STACKEDSECTORTHING && ss.mSkybox == s.mSkybox->target)
|
||||
{
|
||||
s.mPartner = (&ss) - §orPortals[0];
|
||||
s.mPartner = unsigned((&ss) - §orPortals[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue