mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-23 04:42:47 +00:00
Merge branch 'fix-console-dedicated-windows' into 'next'
Fix command prompt issues on dedicated build on Windows Closes #1290 See merge request STJr/SRB2!2518
This commit is contained in:
commit
68f40d8a64
1 changed files with 2 additions and 19 deletions
|
@ -999,20 +999,8 @@ static void I_GetConsoleEvents(void)
|
|||
static void I_StartupConsole(void)
|
||||
{
|
||||
HANDLE ci, co;
|
||||
const INT32 ded = M_CheckParm("-dedicated");
|
||||
BOOL gotConsole = FALSE;
|
||||
if (M_CheckParm("-console") || ded)
|
||||
gotConsole = AllocConsole();
|
||||
#ifdef _DEBUG
|
||||
else if (M_CheckParm("-noconsole") && !ded)
|
||||
#else
|
||||
else if (!M_CheckParm("-console") && !ded)
|
||||
#endif
|
||||
{
|
||||
FreeConsole();
|
||||
gotConsole = FALSE;
|
||||
}
|
||||
|
||||
BOOL gotConsole = AllocConsole();
|
||||
consolevent = !M_CheckParm("-noconsole");
|
||||
if (gotConsole)
|
||||
{
|
||||
SetConsoleTitleA("SRB2 Console");
|
||||
|
@ -1040,12 +1028,7 @@ static inline void I_ShutdownConsole(void){}
|
|||
static void I_GetConsoleEvents(void){}
|
||||
static inline void I_StartupConsole(void)
|
||||
{
|
||||
#ifdef _DEBUG
|
||||
consolevent = !M_CheckParm("-noconsole");
|
||||
#else
|
||||
consolevent = M_CheckParm("-console");
|
||||
#endif
|
||||
|
||||
framebuffer = M_CheckParm("-framebuffer");
|
||||
|
||||
if (framebuffer)
|
||||
|
|
Loading…
Reference in a new issue