mirror of
https://github.com/ZDoom/zdbsp.git
synced 2024-11-10 06:31:35 +00:00
- fixed bad inline function, which fortunately was not used.
This commit is contained in:
parent
4184ac9af1
commit
a5810eccfd
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ finline static uint32 xs_FloorToUInt(real64 val)
|
||||||
|
|
||||||
finline static uint32 xs_CeilToUInt(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)
|
finline static uint32 xs_RoundToUInt(real64 val)
|
||||||
|
|
Loading…
Reference in a new issue