Commented out & replaced the medium difficulty from the race options menu.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1857 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
cosmosninja 2008-05-11 08:00:58 +00:00
parent cf089ee561
commit 032e5b71b7

View File

@ -147,8 +147,14 @@ void RaceOptions::select()
}
else if( m_difficulty == RaceManager::RD_EASY )
{
//TEMP: done just for the release after 0.4 because of AI problems
#if 0
m_difficulty = RaceManager::RD_MEDIUM;
widget_manager->setWgtText( WTOK_DIFFICULTY, _("Driver") );
#else
m_difficulty = RaceManager::RD_HARD;
widget_manager->setWgtText( WTOK_DIFFICULTY, _("Racer") );
#endif
}
break;
@ -161,8 +167,14 @@ void RaceOptions::select()
else if( m_difficulty == RaceManager::RD_HARD )
{
//TEMP: done just for the release after 0.4 because of AI problems
#if 0
m_difficulty = RaceManager::RD_MEDIUM;
widget_manager->setWgtText( WTOK_DIFFICULTY, _("Driver") );
#else
m_difficulty = RaceManager::RD_EASY;
widget_manager->setWgtText( WTOK_DIFFICULTY, _("Novice") );
#endif
}
else if( m_difficulty == RaceManager::RD_MEDIUM )
{