From 224475402fc723c335b9eb7f909ff68dfb713971 Mon Sep 17 00:00:00 2001 From: terminx Date: Fri, 7 Jul 2017 22:50:29 +0000 Subject: [PATCH] Remove errant EDUKE32_PREDICT_FALSE git-svn-id: https://svn.eduke32.com/eduke32@6333 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/gamevars.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/duke3d/src/gamevars.cpp b/source/duke3d/src/gamevars.cpp index ae96dcb1b..d402ff665 100644 --- a/source/duke3d/src/gamevars.cpp +++ b/source/duke3d/src/gamevars.cpp @@ -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;