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

This commit is contained in:
Martin Felis (berta) 2010-12-01 10:33:44 +01:00
parent a1999f9838
commit 263a80a1fd

View File

@ -391,8 +391,8 @@ bool Model::OnGameOver() {
void Model::OnNewGame() {
ClearEntities();
mNewestHighscoreEntryIndex = 99999;
mPlayerLives = 2;
mNewestHighscoreEntryIndex = std::numeric_limits<unsigned int>::max();
mPlayerLives = 3;
mCurrentLevelIndex = 0;
mPoints = 0;