Skip to content

Commit

Permalink
Allow any supported music type to play
Browse files Browse the repository at this point in the history
  • Loading branch information
jjelliott authored and sezero committed Sep 30, 2024
1 parent fe459b4 commit d8d2b54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Quake/bgmusic.c
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit d8d2b54

Please sign in to comment.