Merge pull request #66505 from KoBeWi/floor()_and_int()_are_not_the_same_I_guess🤔
Fix wrong `floori()` behavior
This commit is contained in:
commit
92bcd3c01d
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ struct VariantUtilityFunctions {
|
|||
}
|
||||
|
||||
static inline int floori(double x) {
|
||||
return int(x);
|
||||
return int(Math::floor(x));
|
||||
}
|
||||
|
||||
static inline Variant ceil(Variant x, Callable::CallError &r_error) {
|
||||
|
|
Loading…
Reference in a new issue