- fixed bad inline function, which fortunately was not used.

This commit is contained in:
Christoph Oelckers 2017-07-15 22:35:51 +02:00
parent 4184ac9af1
commit a5810eccfd
1 changed files with 1 additions and 1 deletions

View File

@ -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)