1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-04-13 11:40:38 +02:00

Revert uninteded change

This commit is contained in:
Ivan Savenko 2022-12-26 14:48:13 +02:00
parent 370e92a90a
commit 78ed2f154b

View File

@ -161,10 +161,10 @@ public:
std::string toString() const std::string toString() const
{ {
//Performance is important here //Performance is important here
std::string result = "{" + std::string result = "(" +
std::to_string(x) + " " + std::to_string(x) + " " +
std::to_string(y) + " " + std::to_string(y) + " " +
std::to_string(z) + "}"; std::to_string(z) + ")";
return result; return result;
} }