mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-21 13:39:09 +00:00
(svn r8134) -Fix (r8013): Add a newline after the ShowInfo console output
This commit is contained in:
@@ -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)
|
||||||
|
@@ -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;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user