- last commit was incomplete.

SVN r992 (trunk)
This commit is contained in:
Christoph Oelckers 2008-05-23 10:38:37 +00:00
parent 5574aaca15
commit 656d0b4ab5
3 changed files with 8 additions and 1 deletions

View file

@ -1362,3 +1362,4 @@ static AActor *RoughBlockCheck (AActor *mo, int index)
}
return NULL;
}

View file

@ -762,10 +762,16 @@ DWallLightTransfer::DWallLightTransfer (sector_t *srcSec, int target, BYTE flags
for (linenum = -1; (linenum = P_FindLineFromID (target, linenum)) >= 0; )
{
if (flags & WLF_SIDE1 && lines[linenum].sidenum[0]!=NO_SIDE)
{
sides[lines[linenum].sidenum[0]].Flags &= ~WALLF_AUTOCONTRAST;
sides[lines[linenum].sidenum[0]].Flags |= wallflags;
}
if (flags & WLF_SIDE2 && lines[linenum].sidenum[1]!=NO_SIDE)
{
sides[lines[linenum].sidenum[0]].Flags &= ~WALLF_AUTOCONTRAST;
sides[lines[linenum].sidenum[1]].Flags |= wallflags;
}
}
ChangeStatNum(STAT_LIGHTTRANSFER);
}

View file

@ -75,7 +75,7 @@
// SAVESIG should match SAVEVER.
// MINSAVEVER is the minimum level snapshot version that can be loaded.
#define MINSAVEVER 964
#define MINSAVEVER 992
#if SVN_REVISION_NUMBER < MINSAVEVER
// Never write a savegame with a version lower than what we need