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:
parent
32b475432f
commit
c78e61c96f
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue