Fix for coverity #29401
[supertux.git] / src / object / particlesystem.hpp
index 0e72620..d02a63b 100644 (file)
@@ -55,13 +55,16 @@ protected:
   public:
     Particle() :
       pos(),
+      angle(),
       texture()
     {}
-   
+
     virtual ~Particle()
     {}
 
     Vector pos;
+    // angle at which to draw particle
+    float angle;
     SurfacePtr texture;
 
   private: