mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Merge pull request #1144 from apartfromtime/console-Fix-cursor-timestep
console: Fix cursor timestep
This commit is contained in:
commit
f3b0341b21
1 changed files with 1 additions and 1 deletions
|
@ -513,7 +513,7 @@ Con_DrawInput(void)
|
||||||
{
|
{
|
||||||
if (i == linepos)
|
if (i == linepos)
|
||||||
{
|
{
|
||||||
if (cls.realtime & 8)
|
if ((cls.realtime >> 8) & 1)
|
||||||
{
|
{
|
||||||
ch = CON_INPUT_CURSOR;
|
ch = CON_INPUT_CURSOR;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue