From dfd945bc776d85e1c2af0b163ef5620dfdb1ac86 Mon Sep 17 00:00:00 2001 From: wardje Date: Thu, 31 May 2012 16:48:59 +0000 Subject: [PATCH] Fix bug where easy challenges weren't being counted git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@11270 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/challenges/game_slot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/challenges/game_slot.cpp b/src/challenges/game_slot.cpp index 2e8a7c6a3..0af8da94f 100644 --- a/src/challenges/game_slot.cpp +++ b/src/challenges/game_slot.cpp @@ -78,7 +78,7 @@ void GameSlot::computeActive() else if (i->second->isSolved(RaceManager::RD_EASY)) { m_points += CHALLENGE_POINTS[RaceManager::RD_EASY]; - m_easy_challenges; + m_easy_challenges++; } } else