on new game one has 3 lives and also increased temporary new highscore value
parent
a1999f9838
commit
263a80a1fd
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue