Skip to content

Commit

Permalink
- added line break to 'No GENMIDI lump' message
Browse files Browse the repository at this point in the history
'ST_Init: Init startup screen.' is no longer concatenated with the given line
  • Loading branch information
alexey-lysiuk committed Mar 13, 2020
1 parent 4201c4f commit 13e6ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sound/music/i_music.cpp
Expand Up @@ -174,7 +174,7 @@ static void SetupGenMidi()
auto lump = Wads.CheckNumForName("GENMIDI", ns_global);
if (lump < 0)
{
Printf("No GENMIDI lump found. OPL playback not available.");
Printf("No GENMIDI lump found. OPL playback not available.\n");
return;
}
auto data = Wads.OpenLumpReader(lump);
Expand Down

0 comments on commit 13e6ea7

Please sign in to comment.