summaryrefslogtreecommitdiffstats
path: root/core/math/basis.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-10-07 22:21:43 +0200
committerRémi Verschelde <rverschelde@gmail.com>2022-10-07 22:21:43 +0200
commit39f9c4d229dfffe7ba4b00571e0cb4b65a36b0d5 (patch)
tree4e2e1d8307478cd86c64b00d23931c686a494d96 /core/math/basis.cpp
parent7ca49be7ed0bc2b32adfad81db1278e841e2fe0c (diff)
parent43722dbcbc1e164ab8b9008395c650edb1d977db (diff)
downloadredot-engine-39f9c4d229dfffe7ba4b00571e0cb4b65a36b0d5.tar.gz
Merge pull request #67011 from aaronfranke/color-float-literals
Use float literals for float calculations in Color and misc core cleanup
Diffstat (limited to 'core/math/basis.cpp')
-rw-r--r--core/math/basis.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/basis.cpp b/core/math/basis.cpp
index 743a206ae7..845686f339 100644
--- a/core/math/basis.cpp
+++ b/core/math/basis.cpp
@@ -31,7 +31,7 @@
#include "basis.h"
#include "core/math/math_funcs.h"
-#include "core/string/print_string.h"
+#include "core/string/ustring.h"
#define cofac(row1, col1, row2, col2) \
(rows[row1][col1] * rows[row2][col2] - rows[row1][col2] * rows[row2][col1])