summaryrefslogtreecommitdiffstats
path: root/core/math/math_funcs.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-05-04 15:15:52 +0200
committerGitHub <noreply@github.com>2021-05-04 15:15:52 +0200
commitc9e874b62db78902b4963e656b3b97b57e93c42f (patch)
tree7345c8c6a294e6e467aa0e67c22a22a87db0dffd /core/math/math_funcs.h
parentea9cab3e76b7cb8754b6d64102101f79a253ed8d (diff)
parente196733e880792ca75fce72e642383c777280aa5 (diff)
downloadredot-engine-c9e874b62db78902b4963e656b3b97b57e93c42f.tar.gz
Merge pull request #48442 from akien-mga/posmod-int64_t
Re-bind posmod, use int64_t instead of int
Diffstat (limited to 'core/math/math_funcs.h')
-rw-r--r--core/math/math_funcs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/math/math_funcs.h b/core/math/math_funcs.h
index 8cf13efdb6..c0d7649b65 100644
--- a/core/math/math_funcs.h
+++ b/core/math/math_funcs.h
@@ -218,8 +218,8 @@ public:
return value;
}
- static _ALWAYS_INLINE_ int posmod(int p_x, int p_y) {
- int value = p_x % p_y;
+ static _ALWAYS_INLINE_ int64_t posmod(int64_t p_x, int64_t p_y) {
+ int64_t value = p_x % p_y;
if ((value < 0 && p_y > 0) || (value > 0 && p_y < 0)) {
value += p_y;
}