mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +03:00
Add error checks to freopen calls on Windows
I don't know if they could fail but it's still good to attempt to print _something_ if they do end up failing.
This commit is contained in:
@@ -181,8 +181,17 @@ void vlog_open_console(void)
|
||||
return;
|
||||
}
|
||||
|
||||
freopen("CON", "w", stdout);
|
||||
freopen("CON", "w", stderr);
|
||||
const FILE* handle = freopen("CON", "w", stdout);
|
||||
if (handle == NULL)
|
||||
{
|
||||
vlog_error("Could not redirect STDOUT to console.");
|
||||
}
|
||||
|
||||
handle = freopen("CON", "w", stderr);
|
||||
if (handle == NULL)
|
||||
{
|
||||
vlog_error("Could not redirect STDERR to console.");
|
||||
}
|
||||
|
||||
check_color_support();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user