Browse Source

engine: platform: con_win: fixed console window visibility without developer mode (fix #818)

pull/2/head
SNMetamorph 3 years ago committed by a1batross
parent
commit
66dc20dc2d
  1. 3
      engine/platform/win32/con_win.c

3
engine/platform/win32/con_win.c

@ -538,7 +538,10 @@ void Wcon_CreateConsole( void ) @@ -538,7 +538,10 @@ void Wcon_CreateConsole( void )
s_wcd.consoleVisible = true;
}
else
{
s_wcd.consoleVisible = false;
ShowWindow( s_wcd.hWnd, SW_HIDE );
}
}
/*

Loading…
Cancel
Save