Removed VS warnings.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1952 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2008-05-20 03:30:54 +00:00
parent c6f377413d
commit 359f281a4a

View File

@@ -183,7 +183,7 @@ void UnlockManager::grandPrixFinished()
//-----------------------------------------------------------------------------
void UnlockManager::lockFeature(Challenge* challenge)
{
const unsigned int amount = challenge->getFeatures().size();
const unsigned int amount = (unsigned int)challenge->getFeatures().size();
for(unsigned int n=0; n<amount; n++)
m_locked_features[challenge->getFeatures()[n].name]=true;
} // lockFeature
@@ -192,7 +192,7 @@ void UnlockManager::lockFeature(Challenge* challenge)
void UnlockManager::unlockFeature(Challenge* c, bool save)
{
const unsigned int amount = c->getFeatures().size();
const unsigned int amount = (unsigned int)c->getFeatures().size();
for(unsigned int n=0; n<amount; n++)
{
std::string feature = c->getFeatures()[n].name;