From 13e6ea7796dce17f651667265cc803ce3d67fc63 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Fri, 13 Mar 2020 13:33:11 +0200 Subject: [PATCH] - added line break to 'No GENMIDI lump' message 'ST_Init: Init startup screen.' is no longer concatenated with the given line --- src/sound/music/i_music.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound/music/i_music.cpp b/src/sound/music/i_music.cpp index 8ef1cad89..b171321d7 100644 --- a/src/sound/music/i_music.cpp +++ b/src/sound/music/i_music.cpp @@ -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);