Changeset - r5674:b8be7c01484f
[Not reviewed]
master
0 2 0
Darkvater - 17 years ago 2007-01-14 22:39:53
darkvater@openttd.org
(svn r8134) -Fix (r8013): Add a newline after the ShowInfo console output
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/unix.cpp
Show inline comments
 
@@ -111,7 +111,7 @@ static void ChangeWorkingDirectory(char 
 

	
 
void ShowInfo(const char *str)
 
{
 
	fprintf(stderr, str);
 
	fprintf(stderr, "%s\n", str);
 
}
 

	
 
void ShowOSErrorBox(const char *buf)
src/win32.cpp
Show inline comments
 
@@ -838,7 +838,7 @@ void CreateConsole(void)
 
void ShowInfo(const char *str)
 
{
 
	if (_has_console) {
 
		fprintf(stderr, str);
 
		fprintf(stderr, "%s\n", str);
 
	} else {
 
		bool old;
 

	
0 comments (0 inline, 0 general)