- 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:
parent
c808041337
commit
9655ee9843
6 changed files with 19 additions and 9 deletions
|
|
@ -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))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue