mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-25 22:10:59 +00:00
Merge remote-tracking branch 'yquake2/master'
This commit is contained in:
commit
0773d3c3fe
2 changed files with 1 additions and 6 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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -537,11 +537,6 @@ OGG_PlayTrack(const char *track, qboolean cdtrack, qboolean immediate)
|
||||||
while (retries-- > 0 && newtrack < 2)
|
while (retries-- > 0 && newtrack < 2)
|
||||||
{
|
{
|
||||||
newtrack = randk() % (ogg_maxfileindex + 1);
|
newtrack = randk() % (ogg_maxfileindex + 1);
|
||||||
|
|
||||||
if (newtrack == curtrack)
|
|
||||||
{
|
|
||||||
newtrack = 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue