1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-20 06:53:52 +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),
mVertexCount (0),
mIndexCount (0),
mBounds (Vector3(-1,-1,-1)),
mBoundRadius (-1),
mBoneIndex (0),
mTransform (transform),
mBoundRadius (-1),
mBounds (Vector3(-1,-1,-1)),
mBoneIndex (0),
mScale(1)
{
}