mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- Fixed: Adding GME support accidentally removed DUMB support.
SVN r1665 (trunk)
This commit is contained in:
parent
deff9cfb12
commit
397c1eda26
1 changed files with 1 additions and 1 deletions
|
@ -528,7 +528,7 @@ MusInfo *I_RegisterSong (const char *filename, BYTE *musiccache, int offset, int
|
|||
}
|
||||
}
|
||||
// Check for game music
|
||||
else if ((fmt = GME_CheckFormat(id)) != NULL)
|
||||
else if ((fmt = GME_CheckFormat(id)) != NULL && fmt[0] != '\0')
|
||||
{
|
||||
info = GME_OpenSong(file, musiccache, len, fmt);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue