summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--GameScreen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/GameScreen.cpp b/GameScreen.cpp
index 49dcdbd..aeda96b 100644
--- a/GameScreen.cpp
+++ b/GameScreen.cpp
@@ -28,7 +28,7 @@ void
GameScreen::update(const float dt)
{
m_stage->update(dt);
- if (m_stats->lifes < -100)
+ if (m_stats->lifes < 0)
g_game.set(std::make_unique<OverScreen>(m_stats));
}