1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00

silenced a warning (potentially unintialised variable)

This commit is contained in:
Marc Zinnschlag 2015-04-28 14:06:52 +02:00
parent ae5de0cb2b
commit e69687b0f2

View File

@ -18,6 +18,8 @@ struct KeyT {
float mTension; // Only for TBC interpolation
float mBias; // Only for TBC interpolation
float mContinuity; // Only for TBC interpolation
KeyT() : mTension (0), mBias (0), mContinuity (0) {}
};
typedef KeyT<float> FloatKey;
typedef KeyT<Ogre::Vector3> Vector3Key;