Skip to content

Commit

Permalink
Improve "Playing track number" message (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
BreakinBenny authored Aug 9, 2023
1 parent 4198b21 commit 612ec43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/blood/src/osdcmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ static int osdcmd_music(osdcmdptr_t parm)
if (!levelTryPlayMusic(nEpisode, nLevel))
{
if (CDAudioToggle)
snprintf(buffer, sizeof(buffer), "Playing %i track", gEpisodeInfo[nEpisode].levelsInfo[nLevel].SongId);
snprintf(buffer, sizeof(buffer), "Playing track %i", gEpisodeInfo[nEpisode].levelsInfo[nLevel].SongId);
else
snprintf(buffer, sizeof(buffer), "Playing %s", gEpisodeInfo[nEpisode].levelsInfo[nLevel].Song);
viewSetMessage(buffer);
Expand Down

0 comments on commit 612ec43

Please sign in to comment.