Bugfix: tried to print a std::vector<bool>, instead of the bool.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5222 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2010-04-20 23:48:29 +00:00
parent 986f74d333
commit ec83ef6cad

View File

@ -134,7 +134,7 @@ void CheckStructure::trigger(unsigned int kart_index)
printf("CHECK: %s %d triggered, setting %d to %d.\n",
World::getWorld()->getKart(kart_index)->getIdent().c_str(),
m_index, m_activate_check_index,
cs->m_is_active);
cs->m_is_active[kart_index]);
}
break;
}