mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-07 06:46:43 +00:00
(svn r8134) -Fix (r8013): Add a newline after the ShowInfo console output
This commit is contained in:
parent
aee29710bd
commit
82b0704bcc
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user