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

main
Martin Felis (berta) 2010-12-01 10:33:44 +01:00
parent a1999f9838
commit 263a80a1fd
1 changed files with 2 additions and 2 deletions

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;