mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 15:32:33 +00:00
Merge errors
This commit is contained in:
parent
c58e9b0bae
commit
ad9ef5d593
3 changed files with 1 additions and 4 deletions
|
@ -730,8 +730,6 @@ static void P_NetArchiveWorld(void)
|
||||||
WRITEINT32(put, ss->firsttag);
|
WRITEINT32(put, ss->firsttag);
|
||||||
WRITEINT32(put, ss->nexttag);
|
WRITEINT32(put, ss->nexttag);
|
||||||
}
|
}
|
||||||
if (diff3 & SD_MIDMAP)
|
|
||||||
WRITEINT32(put, ss->midmap);
|
|
||||||
|
|
||||||
if (diff3 & SD_COLORMAP)
|
if (diff3 & SD_COLORMAP)
|
||||||
SaveExtraColormap(put, ss->extra_colormap);
|
SaveExtraColormap(put, ss->extra_colormap);
|
||||||
|
|
|
@ -3256,7 +3256,7 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec)
|
||||||
// This could even override existing colormaps I believe
|
// This could even override existing colormaps I believe
|
||||||
// -- Monster Iestyn 14/06/18
|
// -- Monster Iestyn 14/06/18
|
||||||
for (secnum = -1; (secnum = P_FindSectorFromLineTag(line, secnum)) >= 0 ;)
|
for (secnum = -1; (secnum = P_FindSectorFromLineTag(line, secnum)) >= 0 ;)
|
||||||
sectors[secnum].midmap = line->frontsector->midmap;
|
sectors[secnum].extra_colormap = line->frontsector->extra_colormap;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 448: // Change skybox viewpoint/centerpoint
|
case 448: // Change skybox viewpoint/centerpoint
|
||||||
|
|
|
@ -390,7 +390,6 @@ typedef struct sector_s
|
||||||
|
|
||||||
// these are saved for netgames, so do not let Lua touch these!
|
// these are saved for netgames, so do not let Lua touch these!
|
||||||
INT32 spawn_nexttag, spawn_firsttag; // the actual nexttag/firsttag values may differ if the sector's tag was changed
|
INT32 spawn_nexttag, spawn_firsttag; // the actual nexttag/firsttag values may differ if the sector's tag was changed
|
||||||
INT32 spawn_bottommap, spawn_midmap, spawn_topmap;
|
|
||||||
|
|
||||||
// offsets sector spawned with (via linedef type 7)
|
// offsets sector spawned with (via linedef type 7)
|
||||||
fixed_t spawn_flr_xoffs, spawn_flr_yoffs;
|
fixed_t spawn_flr_xoffs, spawn_flr_yoffs;
|
||||||
|
|
Loading…
Reference in a new issue