summaryrefslogtreecommitdiffhomepage
path: root/GameScreen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'GameScreen.cpp')
-rw-r--r--GameScreen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/GameScreen.cpp b/GameScreen.cpp
index aeda96b..49dcdbd 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 < 0)
+ if (m_stats->lifes < -100)
g_game.set(std::make_unique<OverScreen>(m_stats));
}