High level debug (12) compile failure fix - I searched for as many as I could find with GrepWin, so there may be a few out there still

This commit is contained in:
Uleat
2013-10-27 03:13:10 -04:00
parent b4068823ed
commit cab77e83da
22 changed files with 67 additions and 56 deletions
+3 -3
View File
@@ -130,7 +130,7 @@ Trap* Entity::CastToTrap()
#ifdef DEBUG
if(!IsTrap())
{
//cout << "CastToTrap error" << endl;
//std::cout << "CastToTrap error" << std::endl;
return 0;
}
#endif
@@ -161,7 +161,7 @@ Object* Entity::CastToObject() {
/*Group* Entity::CastToGroup() {
#ifdef _EQDEBUG
if(!IsGroup()) {
cout << "CastToGroup error" << endl;
std::cout << "CastToGroup error" << std::endl;
DebugBreak();
return 0;
}
@@ -230,7 +230,7 @@ const Trap* Entity::CastToTrap() const {
#ifdef DEBUG
if(!IsTrap())
{
//cout << "CastToTrap error" << endl;
//std::cout << "CastToTrap error" << std::endl;
return 0;
}
#endif