Skip to content

Commit

Permalink
Fix coverity issues (uninitialized members)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobbi committed Mar 1, 2015
1 parent 092556f commit 204bc2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/badguy/badguy.cpp
Expand Up @@ -70,6 +70,7 @@ BadGuy::BadGuy(const Vector& pos, Direction direction, const std::string& sprite
start_dir(direction),
frozen(false),
ignited(false),
in_water(false),
dead_script(),
state(STATE_INIT),
is_active_flag(),
Expand Down Expand Up @@ -97,6 +98,7 @@ BadGuy::BadGuy(const Reader& reader, const std::string& sprite_name_, int layer_
start_dir(AUTO),
frozen(false),
ignited(false),
in_water(false),
dead_script(),
state(STATE_INIT),
is_active_flag(),
Expand Down

0 comments on commit 204bc2e

Please sign in to comment.