mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-15 08:41:59 +00:00
- Fixed: The secret map check didn't work for maps inside Zips.
SVN r195 (trunk)
This commit is contained in:
parent
461f8a796a
commit
9338c7360b
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
June 17, 2006 (Changes by Graf Zahl)
|
||||
- Fixed: The secret map check didn't work for maps inside Zips.
|
||||
|
||||
June 14, 2006
|
||||
- Fixed loading of Build/Blood maps.
|
||||
- FWadLump::Read() now handles Blood decryption directly.
|
||||
|
|
|
@ -1650,8 +1650,10 @@ void G_DoCompleted (void)
|
|||
wminfo.next[0] = 0;
|
||||
if (secretexit)
|
||||
{
|
||||
if (Wads.CheckNumForName (level.secretmap) != -1)
|
||||
MapData * map = P_OpenMapData(level.secretmap);
|
||||
if (map != NULL)
|
||||
{
|
||||
delete map;
|
||||
strncpy (wminfo.next, level.secretmap, 8);
|
||||
strncpy (wminfo.lname1, FindLevelInfo (level.secretmap)->pname, 8);
|
||||
}
|
||||
|
|
|
@ -229,7 +229,7 @@ ACTOR PuzzMWeapon : PuzzleItem 9017
|
|||
|
||||
// Clock Gear 1 -------------------------------------------------------------
|
||||
|
||||
ACTOR PuzzGear : PuzzleItem 9018
|
||||
ACTOR PuzzGear1 : PuzzleItem 9018
|
||||
{
|
||||
Game Hexen
|
||||
PuzzleItem.Number 13
|
||||
|
|
Loading…
Reference in a new issue