forked from mirror/openmw-tes3mp
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),
|
||||
mAnimation(NULL),
|
||||
mNearest(30.f),
|
||||
mFurthest(800.f)
|
||||
mFurthest(800.f),
|
||||
mIsNearest(false),
|
||||
mIsFurthest(false)
|
||||
{
|
||||
mVanity.enabled = false;
|
||||
mVanity.allowed = true;
|
||||
|
|
Loading…
Reference in a new issue