mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-29 15:22:08 +00:00
- fixed: level_info_t::mapbg was not initialized
SVN r1429 (trunk)
This commit is contained in:
parent
a7e40b56f6
commit
125b0cefaf
3 changed files with 10 additions and 5 deletions
|
@ -1,4 +1,7 @@
|
||||||
February 17, 2009
|
February 20, 2009 (Changes by Graf Zahl)
|
||||||
|
- fixed: level_info_t::mapbg was not initialized
|
||||||
|
|
||||||
|
February 17, 2009
|
||||||
- Fixed: Player names and chat macros that end with incomplete \c escapes now
|
- Fixed: Player names and chat macros that end with incomplete \c escapes now
|
||||||
have those escapes stripped before printing so that they do not merge with
|
have those escapes stripped before printing so that they do not merge with
|
||||||
subsequent text.
|
subsequent text.
|
||||||
|
@ -59,6 +62,8 @@ February 9, 2009
|
||||||
- Added middle mouse button selection pasting for X systems.
|
- Added middle mouse button selection pasting for X systems.
|
||||||
|
|
||||||
February 8, 2009 (Changes by Graf Zahl)
|
February 8, 2009 (Changes by Graf Zahl)
|
||||||
|
- Fixed parsing of 'cluster' keyword when format is not yet known.
|
||||||
|
- Moved CheckCompatibility call so that it is done after setting LEVEL_HEXENFORMAT.
|
||||||
- Fixed parsing for MustConfirm key in skill parser.
|
- Fixed parsing for MustConfirm key in skill parser.
|
||||||
- Converted internal MAPINFOs to new syntax.
|
- Converted internal MAPINFOs to new syntax.
|
||||||
- Added a range parameter to SNDINFO's $limit.
|
- Added a range parameter to SNDINFO's $limit.
|
||||||
|
|
|
@ -217,6 +217,7 @@ void P_RemoveDefereds (void)
|
||||||
void level_info_t::Reset()
|
void level_info_t::Reset()
|
||||||
{
|
{
|
||||||
mapname[0] = 0;
|
mapname[0] = 0;
|
||||||
|
mapbg[0] = 0;
|
||||||
levelnum = 0;
|
levelnum = 0;
|
||||||
pname[0] = 0;
|
pname[0] = 0;
|
||||||
nextmap[0] = 0;
|
nextmap[0] = 0;
|
||||||
|
|
|
@ -169,14 +169,14 @@ ACTOR WoodenBarrel 82
|
||||||
|
|
||||||
// Strife's explosive barrel ------------------------------------------------
|
// Strife's explosive barrel ------------------------------------------------
|
||||||
|
|
||||||
ACTOR ExplosiveBarrel2 : ExplosiveBarrel 94
|
ACTOR ExplosiveBarrel2 94
|
||||||
{
|
{
|
||||||
Game Strife
|
Game Strife
|
||||||
Health 30
|
Health 30
|
||||||
Radius 10
|
Radius 10
|
||||||
Height 32
|
Height 32
|
||||||
ConversationID 204, -1, -1
|
ConversationID 204, -1, -1
|
||||||
//+SOLID +SHOOTABLE +NOBLOOD
|
+SOLID +SHOOTABLE +NOBLOOD +OLDRADIUSDMG
|
||||||
+INCOMBAT
|
+INCOMBAT
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
|
@ -187,8 +187,7 @@ ACTOR ExplosiveBarrel2 : ExplosiveBarrel 94
|
||||||
BART B 2 Bright A_Scream
|
BART B 2 Bright A_Scream
|
||||||
BART CD 2 Bright
|
BART CD 2 Bright
|
||||||
BART E 2 Bright A_NoBlocking
|
BART E 2 Bright A_NoBlocking
|
||||||
BART F 0 Bright A_AlertMonsters
|
BART F 2 Bright A_Explode(64, 64, 1, 1)
|
||||||
BART F 2 Bright A_Explode(64, 64)
|
|
||||||
BART GHIJ 2 Bright
|
BART GHIJ 2 Bright
|
||||||
BART K 3 Bright
|
BART K 3 Bright
|
||||||
BART L -1
|
BART L -1
|
||||||
|
|
Loading…
Reference in a new issue