mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Remove errant EDUKE32_PREDICT_FALSE
git-svn-id: https://svn.eduke32.com/eduke32@6333 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
a6842482de
commit
224475402f
1 changed files with 1 additions and 1 deletions
|
@ -996,7 +996,7 @@ void __fastcall Gv_GetManyVars(int const numVars, int32_t * const outBuf)
|
|||
|
||||
int const invertResult = !!(gameVar & (MAXGAMEVARS << 1));
|
||||
|
||||
if (EDUKE32_PREDICT_FALSE(gameVar >= g_gameVarCount && invertResult == 0))
|
||||
if (gameVar >= g_gameVarCount && invertResult == 0)
|
||||
{
|
||||
outBuf[j] = Gv_GetSpecialVarX(gameVar);
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue