we don't need any evil hacks around here :)

It seems the cursor hack hasn't been needed for a while. Also get rid of some
crazy function redirection and bogus comments
This commit is contained in:
Bill Currie 2010-01-13 06:53:10 +00:00 committed by Jeff Teunissen
parent b49614a44f
commit 2822b47c3f

View file

@ -1865,17 +1865,6 @@ SV_CheckTimeouts (void)
} }
} }
/*
SV_GetConsoleCommands
Add them exactly as if they had been typed at the console
*/
static void
SV_GetConsoleCommands (void)
{
Con_ProcessInput ();
}
/* /*
SV_CheckVars SV_CheckVars
*/ */
@ -1968,11 +1957,10 @@ SV_Frame (float time)
// get packets // get packets
SV_ReadPackets (); SV_ReadPackets ();
// check for commands typed to the host // check for typing at the console
SV_GetConsoleCommands (); Con_ProcessInput ();
// process gib threads // process gib threads
GIB_Thread_Execute (); GIB_Thread_Execute ();
// process console commands // process console commands
@ -2011,7 +1999,6 @@ SV_Frame (float time)
svs.stats.demo = 0; svs.stats.demo = 0;
Con_DrawConsole (); Con_DrawConsole ();
} }
Con_ProcessInput (); //XXX evil hack to get the cursor in the right place
} }
static void static void