mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Remove ABS in favor of Math::abs
This commit is contained in:
@@ -799,7 +799,7 @@ Image::Format Image::get_format() const {
|
||||
}
|
||||
|
||||
static double _bicubic_interp_kernel(double x) {
|
||||
x = ABS(x);
|
||||
x = Math::abs(x);
|
||||
|
||||
double bc = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user