aboutsummaryrefslogtreecommitdiffstats
path: root/include/weather.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/weather.hpp')
-rw-r--r--include/weather.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/weather.hpp b/include/weather.hpp
index c348c15..f2f5fed 100644
--- a/include/weather.hpp
+++ b/include/weather.hpp
@@ -48,7 +48,7 @@ public:
newPartDelay = 0;
partSystem.add(vec2(offset.x - game::SCREEN_WIDTH / 2 + randGet() % game::SCREEN_WIDTH,
offset.y + game::SCREEN_HEIGHT / 2 + 100),
- ParticleType::Drop);
+ ParticleType::Drop, 3000, 3);
}
break; // TODO
case Weather::Snowy:
@@ -56,7 +56,7 @@ public:
newPartDelay = 0;
partSystem.add(vec2(offset.x - game::SCREEN_WIDTH / 2 + randGet() % game::SCREEN_WIDTH,
offset.y + game::SCREEN_HEIGHT / 2 + 100),
- ParticleType::Confetti, 6000);
+ ParticleType::Confetti, 6000, 0);
}
break; // TODO
default: