mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
- last commit was incomplete.
SVN r992 (trunk)
This commit is contained in:
parent
5574aaca15
commit
656d0b4ab5
3 changed files with 8 additions and 1 deletions
|
@ -1362,3 +1362,4 @@ static AActor *RoughBlockCheck (AActor *mo, int index)
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -762,10 +762,16 @@ DWallLightTransfer::DWallLightTransfer (sector_t *srcSec, int target, BYTE flags
|
||||||
for (linenum = -1; (linenum = P_FindLineFromID (target, linenum)) >= 0; )
|
for (linenum = -1; (linenum = P_FindLineFromID (target, linenum)) >= 0; )
|
||||||
{
|
{
|
||||||
if (flags & WLF_SIDE1 && lines[linenum].sidenum[0]!=NO_SIDE)
|
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;
|
sides[lines[linenum].sidenum[0]].Flags |= wallflags;
|
||||||
|
}
|
||||||
|
|
||||||
if (flags & WLF_SIDE2 && lines[linenum].sidenum[1]!=NO_SIDE)
|
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;
|
sides[lines[linenum].sidenum[1]].Flags |= wallflags;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
ChangeStatNum(STAT_LIGHTTRANSFER);
|
ChangeStatNum(STAT_LIGHTTRANSFER);
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
// SAVESIG should match SAVEVER.
|
// SAVESIG should match SAVEVER.
|
||||||
|
|
||||||
// MINSAVEVER is the minimum level snapshot version that can be loaded.
|
// MINSAVEVER is the minimum level snapshot version that can be loaded.
|
||||||
#define MINSAVEVER 964
|
#define MINSAVEVER 992
|
||||||
|
|
||||||
#if SVN_REVISION_NUMBER < MINSAVEVER
|
#if SVN_REVISION_NUMBER < MINSAVEVER
|
||||||
// Never write a savegame with a version lower than what we need
|
// Never write a savegame with a version lower than what we need
|
||||||
|
|
Loading…
Reference in a new issue