1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-02 22:45:35 +00:00

Initialize member variables in the same order they are defined to avoid compiler warning

This commit is contained in:
Jan-Peter Nilsson 2011-04-02 13:06:05 +02:00
parent 32b475432f
commit c78e61c96f

View file

@ -379,10 +379,10 @@ namespace BtOgre {
mIndexBuffer (0), mIndexBuffer (0),
mVertexCount (0), mVertexCount (0),
mIndexCount (0), mIndexCount (0),
mBounds (Vector3(-1,-1,-1)),
mBoundRadius (-1),
mBoneIndex (0),
mTransform (transform), mTransform (transform),
mBoundRadius (-1),
mBounds (Vector3(-1,-1,-1)),
mBoneIndex (0),
mScale(1) mScale(1)
{ {
} }