From: Mario Date: Fri, 1 May 2015 19:22:00 +0000 (+1000) Subject: Boolerize another pesky float X-Git-Tag: xonotic-v0.8.1~38^2~10 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=a2cf0b51e30125f09d190eb784b50ff3b11f4efa;p=xonotic%2Fxonotic-data.pk3dir.git Boolerize another pesky float --- diff --git a/qcsrc/common/physics.qc b/qcsrc/common/physics.qc index 0d723c33a..32ae72f42 100644 --- a/qcsrc/common/physics.qc +++ b/qcsrc/common/physics.qc @@ -477,7 +477,7 @@ bool PlayerJump (void) return true; // no jumping while blocked #endif - float doublejump = false; + bool doublejump = false; float mjumpheight = PHYS_JUMPVELOCITY; player_multijump = doublejump;