mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 17:31:08 +00:00
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:
parent
b49614a44f
commit
2822b47c3f
1 changed files with 2 additions and 15 deletions
|
@ -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
|
||||
*/
|
||||
|
@ -1968,11 +1957,10 @@ SV_Frame (float time)
|
|||
// get packets
|
||||
SV_ReadPackets ();
|
||||
|
||||
// check for commands typed to the host
|
||||
SV_GetConsoleCommands ();
|
||||
// check for typing at the console
|
||||
Con_ProcessInput ();
|
||||
|
||||
// process gib threads
|
||||
|
||||
GIB_Thread_Execute ();
|
||||
|
||||
// process console commands
|
||||
|
@ -2011,7 +1999,6 @@ SV_Frame (float time)
|
|||
svs.stats.demo = 0;
|
||||
Con_DrawConsole ();
|
||||
}
|
||||
Con_ProcessInput (); //XXX evil hack to get the cursor in the right place
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue