- added line break to 'No GENMIDI lump' message

'ST_Init: Init startup screen.' is no longer concatenated with the given line
This commit is contained in:
alexey.lysiuk 2020-03-13 13:33:11 +02:00
parent 4201c4fbb5
commit 13e6ea7796

View file

@ -174,7 +174,7 @@ static void SetupGenMidi()
auto lump = Wads.CheckNumForName("GENMIDI", ns_global); auto lump = Wads.CheckNumForName("GENMIDI", ns_global);
if (lump < 0) if (lump < 0)
{ {
Printf("No GENMIDI lump found. OPL playback not available."); Printf("No GENMIDI lump found. OPL playback not available.\n");
return; return;
} }
auto data = Wads.OpenLumpReader(lump); auto data = Wads.OpenLumpReader(lump);