on new game one has 3 lives and also increased temporary new highscore value

This commit is contained in:
2010-12-01 10:33:44 +01:00
parent a1999f9838
commit 263a80a1fd
+2 -2
View File
@@ -391,8 +391,8 @@ bool Model::OnGameOver() {
void Model::OnNewGame() { void Model::OnNewGame() {
ClearEntities(); ClearEntities();
mNewestHighscoreEntryIndex = 99999; mNewestHighscoreEntryIndex = std::numeric_limits<unsigned int>::max();
mPlayerLives = 2; mPlayerLives = 3;
mCurrentLevelIndex = 0; mCurrentLevelIndex = 0;
mPoints = 0; mPoints = 0;