Skip to content
Snippets Groups Projects
Commit 99fad846 authored by Monster Iestyn's avatar Monster Iestyn
Browse files

Added missing SHORT macros around these variables, they're needed for...

Added missing SHORT macros around these variables, they're needed for big-endian builds to use these properly

...I'm to blame for this particular slipup as it happens, surprise surprise
parent e31c7ae3
No related branches found
No related tags found
No related merge requests found
......@@ -636,7 +636,7 @@ static void P_NetArchiveWorld(void)
if (li->special != SHORT(mld->special))
diff |= LD_SPECIAL;
if (mld->special == 321 || mld->special == 322) // only reason li->callcount would be non-zero is if either of these are involved
if (SHORT(mld->special) == 321 || SHORT(mld->special) == 322) // only reason li->callcount would be non-zero is if either of these are involved
diff |= LD_CLLCOUNT;
if (li->sidenum[0] != 0xffff)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment