- Moved the sector type translation for Doom format maps into a simple lump

in zdoom.pk3.
- Changed Line_SetIdentification so that the fifth arg is a high-byte for the line ID.


SVN r361 (trunk)
This commit is contained in:
Christoph Oelckers 2006-10-25 16:21:08 +00:00
commit 753f280e04
7 changed files with 159 additions and 58 deletions

View file

@ -1651,7 +1651,7 @@ void P_AdjustLine (line_t *ld)
switch (ld->special)
{
case Line_SetIdentification:
ld->id = ld->args[0];
ld->id = ld->args[0] + 256 * ld->args[4];
ld->flags |= ld->args[1]<<16;
break;