forked from teamnwah/openmw-tes3coop
fix uninitialized variables
This commit is contained in:
parent
d2b7cb5bb2
commit
7c24c0a64e
1 changed files with 3 additions and 1 deletions
|
@ -27,7 +27,9 @@ namespace MWRender
|
||||||
mDistanceAdjusted(false),
|
mDistanceAdjusted(false),
|
||||||
mAnimation(NULL),
|
mAnimation(NULL),
|
||||||
mNearest(30.f),
|
mNearest(30.f),
|
||||||
mFurthest(800.f)
|
mFurthest(800.f),
|
||||||
|
mIsNearest(false),
|
||||||
|
mIsFurthest(false)
|
||||||
{
|
{
|
||||||
mVanity.enabled = false;
|
mVanity.enabled = false;
|
||||||
mVanity.allowed = true;
|
mVanity.allowed = true;
|
||||||
|
|
Loading…
Reference in a new issue