From d8d2b540561d409d9b4dc3616f2e9861e7431c27 Mon Sep 17 00:00:00 2001 From: jjelliott Date: Mon, 30 Sep 2024 14:23:20 -0400 Subject: [PATCH] Allow any supported music type to play https://github.com/sezero/quakespasm/pull/113 --- Quake/bgmusic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Quake/bgmusic.c b/Quake/bgmusic.c index 03dba8baf..53d6455ab 100644 --- a/Quake/bgmusic.c +++ b/Quake/bgmusic.c @@ -317,8 +317,8 @@ void BGM_PlayCDtrack (byte track, qboolean looping) { if (! handler->is_available) goto _next; - if (! CDRIPTYPE(handler->type)) - goto _next; + // if (! CDRIPTYPE(handler->type)) + // goto _next; q_snprintf(tmp, sizeof(tmp), "%s/track%02d.%s", MUSIC_DIRNAME, (int)track, handler->ext); if (! COM_FileExists(tmp, &path_id))