]> git.rm.cloudns.org Git - xonotic/darkplaces.git/commit
Fix OP_???_IF math.
authorRudolf Polzer <divVerent@gmail.com>
Fri, 3 Jan 2025 23:27:04 +0000 (18:27 -0500)
committerdivVerent <divVerent@gmail.com>
Wed, 22 Jan 2025 14:20:04 +0000 (09:20 -0500)
commit7abf11a85c7f7da4174aa8510adaf62e4dfe0f7e
treed5337b957279d1424122b94cc40a3c309fc611cc
parentdbebfea96dae5c8c75a2f8680768edc7851801c2
Fix OP_???_IF math.

Previously 5 / 1.25 returned 5 due to rounding the 1.25 to int and
performing an integer division.

Now 5 / 1.25 will return 4 due to converting the 5 to floating point and
performing a floating division.

Same applied to +, - and * for int and float types in this order.

Which is a lot more what one would expect based on what C does, and
also matches FTEQW.
prvm_execprogram.h