1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +02: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:
Misa 2022-11-14 21:56:02 -08:00
parent 0a181d8c3d
commit 40dd2571c2

View File

@ -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();
}