Fix coverity issues (uninitialized members)
authorTobias Markus <tobbi@mozilla-uk.org>
Sun, 1 Mar 2015 19:26:23 +0000 (20:26 +0100)
committerTobias Markus <tobbi@mozilla-uk.org>
Sun, 1 Mar 2015 19:26:23 +0000 (20:26 +0100)
src/badguy/badguy.cpp

index ebea262..cc0638e 100644 (file)
@@ -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(),
@@ -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(),