From 397c1eda26e6dd2d436482c1c5518a0efd9de0c3 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Thu, 11 Jun 2009 03:48:53 +0000 Subject: [PATCH] - Fixed: Adding GME support accidentally removed DUMB support. SVN r1665 (trunk) --- src/sound/i_music.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound/i_music.cpp b/src/sound/i_music.cpp index d2e2efee0..83c75410d 100644 --- a/src/sound/i_music.cpp +++ b/src/sound/i_music.cpp @@ -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); }