diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-10-05 21:40:33 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-10-07 11:27:41 -0500 |
commit | 65eeb94f75d00cf523da114de3587f930cdec13f (patch) | |
tree | dde77921057db9be1a1ffc79da1e22c3915c1cfe /src/variant/rect2i.cpp | |
parent | 1507253bd5a8b33df1e72b3848b978bcf4a01586 (diff) | |
download | redot-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.cpp | 2 |
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 { |