mirror of
https://github.com/ZDoom/gzdoom-last-svn.git
synced 2025-06-04 03:00:47 +00:00
* 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:
parent
2e875d89e6
commit
5c0247886e
36 changed files with 274 additions and 59 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue