Minor fixes.
[evilplumber] / src / game.cpp
index 3a71e3f..6093fa3 100644 (file)
@@ -561,8 +561,6 @@ LevelSwitcher::LevelSwitcher(GameController* gameController,
     connect(startButton, SIGNAL(clicked()), this, SLOT(onStartClicked()));
     connect(gameController, SIGNAL(levelPassed(int)), this, SLOT(onLevelPassed(int)));
     connect(gameController, SIGNAL(levelFailed()), this, SLOT(onLevelFailed()));
-    startTitle->setText("Starting a new game.");
-    scoreLabel->setText("0");
     chooseLevelCollection();
 }
 
@@ -598,6 +596,8 @@ void LevelSwitcher::onLevelCollectionChosen()
 
     level = 0;
     totalScore = 0;
+    startTitle->setText("Starting a new game.");
+    scoreLabel->setText("0");
     initiateLevel();
 }