mirror of
https://github.com/glest/glest-source.git
synced 2025-08-09 09:56:30 +02:00
- more memory cleanup
This commit is contained in:
@@ -175,6 +175,7 @@ Unit::Unit(int id, UnitPathInterface *unitpath, const Vec2i &pos, const UnitType
|
|||||||
this->lastRenderFrame = 0;
|
this->lastRenderFrame = 0;
|
||||||
this->visible = true;
|
this->visible = true;
|
||||||
this->retryCurrCommandCount=0;
|
this->retryCurrCommandCount=0;
|
||||||
|
this->screenPos = Vec3f(0.0);
|
||||||
|
|
||||||
level= NULL;
|
level= NULL;
|
||||||
loadType= NULL;
|
loadType= NULL;
|
||||||
|
@@ -146,9 +146,12 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::string getString() const {
|
std::string getString() const {
|
||||||
std::ostringstream streamOut(std::ostringstream::out);
|
std::ostringstream streamOut;
|
||||||
streamOut << "x [" << x << "] y [" << y << "]";
|
streamOut << "x [" << x;
|
||||||
return streamOut.str();
|
streamOut << "] y [" << y << "]";
|
||||||
|
std::string result = streamOut.str();
|
||||||
|
streamOut.str(std::string());
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -330,9 +333,13 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::string getString() const {
|
std::string getString() const {
|
||||||
std::ostringstream streamOut(std::ostringstream::out);
|
std::ostringstream streamOut;
|
||||||
streamOut << "x [" << x << "] y [" << y << "] z [" << z << "]";
|
streamOut << "x [" << x;
|
||||||
return streamOut.str();
|
streamOut << "] y [" << y;
|
||||||
|
streamOut << "] z [" << z << "]";
|
||||||
|
std::string result = streamOut.str();
|
||||||
|
streamOut.str(std::string());
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
@@ -473,9 +480,14 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::string getString() const {
|
std::string getString() const {
|
||||||
std::ostringstream streamOut(std::ostringstream::out);
|
std::ostringstream streamOut;
|
||||||
streamOut << "x [" << x << "] y [" << y << "] z [" << z << "] w [" << w << "]";
|
streamOut << "x [" << x;
|
||||||
return streamOut.str();
|
streamOut << "] y [" << y;
|
||||||
|
streamOut << "] z [" << z;
|
||||||
|
streamOut << "] w [" << w << "]";
|
||||||
|
std::string result = streamOut.str();
|
||||||
|
streamOut.str(std::string());
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user