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

(cherry picked from commit 39af25024a)
This commit is contained in:
Hermès Bélusca-Maïto 2018-06-03 02:13:11 +02:00 committed by Joachim Henze
parent 7b3affa096
commit 9a6be75d5f

View file

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