- 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:
parent
2efba66558
commit
753f280e04
7 changed files with 159 additions and 58 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue