mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-09 23:02:02 +00:00
console: Fix cursor timestep
This commit is contained in:
parent
6066b3c979
commit
7fa653cae1
1 changed files with 1 additions and 1 deletions
|
@ -513,7 +513,7 @@ Con_DrawInput(void)
|
|||
{
|
||||
if (i == linepos)
|
||||
{
|
||||
if (cls.realtime & 8)
|
||||
if ((cls.realtime >> 8) & 1)
|
||||
{
|
||||
ch = CON_INPUT_CURSOR;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue