up, apparently the initial houtput is never 0 or invalid on Windows XP,
which causes it to never open a console - but then error out because the
hinput is invalid
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8238
d7cf8633-e32d-0410-b094-
e92efae38249
// if (cls.state == ca_dedicated)
if (COM_CheckParm("-dedicated"))
{
- if ((houtput == 0) || (houtput == INVALID_HANDLE_VALUE))
+ //if ((houtput == 0) || (houtput == INVALID_HANDLE_VALUE)) // LordHavoc: on Windows XP this is never 0 or invalid, but hinput is invalid
{
AllocConsole ();
houtput = GetStdHandle (STD_OUTPUT_HANDLE);