diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-10-06 16:35:54 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-10-07 11:28:47 -0500 |
commit | 43722dbcbc1e164ab8b9008395c650edb1d977db (patch) | |
tree | 24105241d8b2f168c9a1525e13da63b5880f8f91 /core/math/transform_3d.cpp | |
parent | 1baefceababe8a0d63434a231c3799555a45d8e3 (diff) | |
download | redot-engine-43722dbcbc1e164ab8b9008395c650edb1d977db.tar.gz |
Use float literals for float calculations in Color
Diffstat (limited to 'core/math/transform_3d.cpp')
-rw-r--r-- | core/math/transform_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/transform_3d.cpp b/core/math/transform_3d.cpp index 2de9e81b38..6741ef4034 100644 --- a/core/math/transform_3d.cpp +++ b/core/math/transform_3d.cpp @@ -31,7 +31,7 @@ #include "transform_3d.h" #include "core/math/math_funcs.h" -#include "core/string/print_string.h" +#include "core/string/ustring.h" void Transform3D::affine_invert() { basis.invert(); |