(svn r8134) -Fix (r8013): Add a newline after the ShowInfo console output

This commit is contained in:
Darkvater 2007-01-14 22:39:53 +00:00
parent aee29710bd
commit 82b0704bcc
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ static void ChangeWorkingDirectory(char *exe)
void ShowInfo(const char *str) void ShowInfo(const char *str)
{ {
fprintf(stderr, str); fprintf(stderr, "%s\n", str);
} }
void ShowOSErrorBox(const char *buf) void ShowOSErrorBox(const char *buf)

View File

@ -838,7 +838,7 @@ void CreateConsole(void)
void ShowInfo(const char *str) void ShowInfo(const char *str)
{ {
if (_has_console) { if (_has_console) {
fprintf(stderr, str); fprintf(stderr, "%s\n", str);
} else { } else {
bool old; bool old;