summaryrefslogtreecommitdiffstats
path: root/src/variant/rect2i.cpp
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2022-10-05 21:40:33 -0500
committerAaron Franke <arnfranke@yahoo.com>2022-10-07 11:27:41 -0500
commit65eeb94f75d00cf523da114de3587f930cdec13f (patch)
treedde77921057db9be1a1ffc79da1e22c3915c1cfe /src/variant/rect2i.cpp
parent1507253bd5a8b33df1e72b3848b978bcf4a01586 (diff)
downloadredot-cpp-65eeb94f75d00cf523da114de3587f930cdec13f.tar.gz
Update core data structures to match the engine
Diffstat (limited to 'src/variant/rect2i.cpp')
-rw-r--r--src/variant/rect2i.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/variant/rect2i.cpp b/src/variant/rect2i.cpp
index 44980d8..8d87703 100644
--- a/src/variant/rect2i.cpp
+++ b/src/variant/rect2i.cpp
@@ -36,7 +36,7 @@
namespace godot {
Rect2i::operator String() const {
- return String(position) + ", " + String(size);
+ return "[P: " + position.operator String() + ", S: " + size + "]";
}
Rect2i::operator Rect2() const {