Skip to content

Commit b8e19ab

Browse files
Remove unused variable
1 parent 831882f commit b8e19ab

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/badguy/flyingsnowball.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ const float GLOBAL_SPEED_MULT = 0.8f; /**< The overall movement speed/rate. */
3232
FlyingSnowBall::FlyingSnowBall(const ReaderMapping& reader) :
3333
BadGuy(reader, "images/creatures/flying_snowball/flying_snowball.sprite"),
3434
total_time_elapsed(),
35-
prev_height(0.f),
3635
puff_timer()
3736
{
3837
m_physic.enable_gravity(false);

src/badguy/flyingsnowball.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ class FlyingSnowBall final : public BadGuy
4040

4141
private:
4242
float total_time_elapsed;
43-
float prev_height;
4443
Timer puff_timer; /**< time until the next smoke puff is spawned */
4544

4645
private:

0 commit comments

Comments
 (0)