mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +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
|
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
|
||||||
|
|
Loading…
Reference in a new issue