Selaa lähdekoodia

Fix incorrect use of PODVector in ValueAnimation, maybe related to #361

Amadeus 11 vuotta sitten
vanhempi
sitoutus
2014f5ee1a
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      Source/Engine/Scene/ValueAnimation.h

+ 2 - 2
Source/Engine/Scene/ValueAnimation.h

@@ -141,13 +141,13 @@ protected:
     /// End time.
     /// End time.
     float endTime_;
     float endTime_;
     /// Key frames.
     /// Key frames.
-    PODVector<VAnimKeyFrame> keyFrames_;
+    Vector<VAnimKeyFrame> keyFrames_;
     /// Spline tangents.
     /// Spline tangents.
     VariantVector splineTangents_;
     VariantVector splineTangents_;
     /// Spline tangents dirty.
     /// Spline tangents dirty.
     bool splineTangentsDirty_;
     bool splineTangentsDirty_;
     /// Event frames.
     /// Event frames.
-    PODVector<VAnimEventFrame> eventFrames_;
+    Vector<VAnimEventFrame> eventFrames_;
 };
 };
 
 
 }
 }