From 8c8b1b58d743b33a8cd18ff9e4a7accd10125a91 Mon Sep 17 00:00:00 2001 From: Patryk Obara Date: Fri, 14 Feb 2020 13:21:36 +0100 Subject: [PATCH] Print newline after 'config -l' --- src/misc/programs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc/programs.cpp b/src/misc/programs.cpp index 8a2118f7..950ac1e9 100644 --- a/src/misc/programs.cpp +++ b/src/misc/programs.cpp @@ -841,6 +841,6 @@ void PROGRAMS_Init(Section* /*sec*/) { MSG_Add("PROGRAM_CONFIG_NO_PROPERTY", "There is no property \"%s\" in section \"%s\".\n"); MSG_Add("PROGRAM_CONFIG_SET_SYNTAX","Correct syntax: config -set \"section property\".\n"); MSG_Add("PROGRAM_CONFIG_GET_SYNTAX","Correct syntax: config -get \"section property\".\n"); - MSG_Add("PROGRAM_CONFIG_PRINT_STARTUP","\nDOSBox was started with the following command line parameters:\n%s"); + MSG_Add("PROGRAM_CONFIG_PRINT_STARTUP", "\nDOSBox was started with the following command line parameters:\n%s\n"); MSG_Add("PROGRAM_CONFIG_MISSINGPARAM","Missing parameter."); }