From a5810eccfd59561a1e6d87342253753a01a2bd10 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 15 Jul 2017 22:35:51 +0200 Subject: [PATCH] - fixed bad inline function, which fortunately was not used. --- xs_Float.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs_Float.h b/xs_Float.h index 19300b2..1f57f92 100644 --- a/xs_Float.h +++ b/xs_Float.h @@ -209,7 +209,7 @@ finline static uint32 xs_FloorToUInt(real64 val) finline static uint32 xs_CeilToUInt(real64 val) { - return (uint32)xs_CeilToUInt(val); + return (uint32)xs_CeilToInt(val); } finline static uint32 xs_RoundToUInt(real64 val)