[CMD] Print a newline after the interactive 'pause' command message finishes to run.

This commit is contained in:
Hermès Bélusca-Maïto 2018-06-03 02:13:11 +02:00
parent 07302fe8eb
commit 39af25024a
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -45,12 +45,13 @@ INT cmd_pause (LPTSTR param)
}
if (*param)
ConOutPrintf (param);
ConOutPuts(param);
else
msg_pause();
cgetchar();
ConOutChar(_T('\n'));
return 0;
}