From 032e5b71b7647e7827092b52c2573eedaf4a9ca8 Mon Sep 17 00:00:00 2001 From: cosmosninja Date: Sun, 11 May 2008 08:00:58 +0000 Subject: [PATCH] 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 --- src/gui/race_options.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/gui/race_options.cpp b/src/gui/race_options.cpp index d581b361b..4d458f922 100644 --- a/src/gui/race_options.cpp +++ b/src/gui/race_options.cpp @@ -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 ) {