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() {
|
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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue