Browse Source

Fixed: Initialize all members in LWSImporter

Richard 10 years ago
parent
commit
e5c603ea1a
1 changed files with 6 additions and 1 deletions
  1. 6 1
      code/LWSLoader.cpp

+ 6 - 1
code/LWSLoader.cpp

@@ -129,7 +129,12 @@ void LWS::Element::Parse (const char*& buffer)
 // ------------------------------------------------------------------------------------------------
 // Constructor to be privately used by Importer
 LWSImporter::LWSImporter()
-: noSkeletonMesh()
+    : configSpeedFlag(),
+    io(),
+    first(),
+    last(),
+    fps(),
+    noSkeletonMesh()
 {
     // nothing to do here
 }