* Added missing po_man.h.

* Updated to ZDoom r2450:
- Added DavidPH's Poison damage extension but changed it so that the metadata can be removed.
- Added Firebrand's patch to rename 'swap' due to naming conflicts in newer MSVC compilers.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@848 b0f79afe-0144-0410-b225-9a4edf0717df
This commit is contained in:
gez 2010-07-23 22:01:12 +00:00
parent 2e875d89e6
commit 5c0247886e
36 changed files with 274 additions and 59 deletions

View file

@ -574,7 +574,7 @@ void R_AddLine (seg_t *line)
int t = 256-WallTX1;
WallTX1 = 256-WallTX2;
WallTX2 = t;
swap (WallTY1, WallTY2);
swapvalues (WallTY1, WallTY2);
}
if (WallTX1 >= -WallTY1)
@ -651,7 +651,7 @@ void R_AddLine (seg_t *line)
{ // The seg is only part of the wall.
if (line->linedef->sidedef[0] != line->sidedef)
{
swap (v1, v2);
swapvalues (v1, v2);
}
tx1 = v1->x - viewx;
tx2 = v2->x - viewx;
@ -901,7 +901,7 @@ static bool R_CheckBBox (fixed_t *bspcoord) // killough 1/28/98: static
int t = 256-rx1;
rx1 = 256-rx2;
rx2 = t;
swap (ry1, ry2);
swapvalues (ry1, ry2);
}
if (rx1 >= -ry1)