- Changed music name handling in MAPINFO so that music can be specified by

full path of a file in a Zip.
- Fixed: intermusic in MAPINFO was limited to WAD lumps and couldn't handle 
  external data.

ACS:

- Fixed: Global and World array symbols didn't initialize their array information.


SVN r182 (trunk)
This commit is contained in:
Christoph Oelckers 2006-06-09 08:19:46 +00:00
commit 9655ee9843
6 changed files with 19 additions and 9 deletions

View file

@ -1507,8 +1507,11 @@ bool S_ChangeMusic (const char *musicname, int order, bool looping, bool force)
{
if ((lumpnum = Wads.CheckNumForName (musicname)) == -1)
{
Printf ("Music \"%s\" not found\n", musicname);
return false;
if ((lumpnum = Wads.CheckNumForFullName (musicname)) == -1)
{
Printf ("Music \"%s\" not found\n", musicname);
return false;
}
}
if (!Wads.IsUncompressedFile(lumpnum))
{