Remove errant EDUKE32_PREDICT_FALSE

git-svn-id: https://svn.eduke32.com/eduke32@6333 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2017-07-07 22:50:29 +00:00
parent a6842482de
commit 224475402f

View file

@ -996,7 +996,7 @@ void __fastcall Gv_GetManyVars(int const numVars, int32_t * const outBuf)
int const invertResult = !!(gameVar & (MAXGAMEVARS << 1)); 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); outBuf[j] = Gv_GetSpecialVarX(gameVar);
continue; continue;