(svn r8013) -Codechange (r6921, rUnknown): Show the error message of corrupt or missing (own) files

through a ShowInfo(F). This way windows users also see this message and bugs such as
 FS#528 will not happen anymore. Put ShowInfo(F) error output to stderr and not stdout.
This commit is contained in:
Darkvater
2007-01-09 21:25:13 +00:00
parent fe1ac3c5d1
commit 6c3187213d
6 changed files with 8 additions and 9 deletions

View File

@@ -836,7 +836,7 @@ void CreateConsole(void)
void ShowInfo(const char *str)
{
if (_has_console) {
puts(str);
fprintf(stderr, str);
} else {
bool old;