summaryrefslogtreecommitdiffstats
path: root/core/math/rect2.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-03-26 17:04:14 +0100
committerkobewi <kobewi4e@gmail.com>2024-10-23 15:00:21 +0200
commit5c0f2414cd6d988a4eab93fc21bc3b80388907e8 (patch)
tree05d11ea1b6d97b2cb8e2e203dba1ffb89dc70eb5 /core/math/rect2.cpp
parent533c616cb86ff7bb940d58ffbbcc1a3eca0aa33d (diff)
downloadredot-engine-5c0f2414cd6d988a4eab93fc21bc3b80388907e8.tar.gz
Always add decimal when printing float
Diffstat (limited to 'core/math/rect2.cpp')
-rw-r--r--core/math/rect2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/rect2.cpp b/core/math/rect2.cpp
index c55226a57e..7f77b0786c 100644
--- a/core/math/rect2.cpp
+++ b/core/math/rect2.cpp
@@ -283,7 +283,7 @@ next4:
}
Rect2::operator String() const {
- return "[P: " + position.operator String() + ", S: " + size + "]";
+ return "[P: " + position.operator String() + ", S: " + size.operator String() + "]";
}
Rect2::operator Rect2i() const {