mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 07:57:52 +00:00
- Forgot to bump min. savegame version for last revision.
- Increased limit for demon/melee to 4. SVN r880 (trunk)
This commit is contained in:
parent
cb1bd7739e
commit
69002580e6
4 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
||||||
April 4, 2008 (Changes by Graf Zahl)
|
April 4, 2008 (Changes by Graf Zahl)
|
||||||
|
- Increased limit for demon/melee to 4.
|
||||||
- Fixed: P_CheckSwitchRange accessed invalid memory when testing a one-sided
|
- Fixed: P_CheckSwitchRange accessed invalid memory when testing a one-sided
|
||||||
line.
|
line.
|
||||||
- Fixed: P_SpawnPuff assumed that all melee attacks have the same range
|
- Fixed: P_SpawnPuff assumed that all melee attacks have the same range
|
||||||
|
|
|
@ -715,7 +715,8 @@ static void S_StartSound (fixed_t *pt, AActor *mover, int channel,
|
||||||
|
|
||||||
// If this sound doesn't like playing near itself, don't play it if
|
// If this sound doesn't like playing near itself, don't play it if
|
||||||
// that's what would happen.
|
// that's what would happen.
|
||||||
if (NearLimit > 0 && pt != NULL && S_CheckSoundLimit(sfx, pos, NearLimit))
|
if (NearLimit > 0 && pt != NULL && mover != players[consoleplayer].camera &&
|
||||||
|
S_CheckSoundLimit(sfx, pos, NearLimit))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Make sure the sound is loaded.
|
// Make sure the sound is loaded.
|
||||||
|
|
|
@ -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 854
|
#define MINSAVEVER 879
|
||||||
|
|
||||||
#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
|
||||||
|
|
|
@ -313,6 +313,7 @@ demon/active dsdmact
|
||||||
demon/pain dsdmpain
|
demon/pain dsdmpain
|
||||||
demon/melee dssgtatk
|
demon/melee dssgtatk
|
||||||
demon/death dssgtdth
|
demon/death dssgtdth
|
||||||
|
$limit demon/melee 4
|
||||||
|
|
||||||
// Spectre
|
// Spectre
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue