forked from teamnwah/openmw-tes3coop
Fix uninitialized member
This commit is contained in:
parent
ffe19e7a52
commit
7907181c0c
1 changed files with 3 additions and 1 deletions
|
@ -158,7 +158,9 @@ namespace
|
|||
namespace MWMechanics
|
||||
{
|
||||
PathFinder::PathFinder()
|
||||
:mIsPathConstructed(false),mIsGraphConstructed(false)
|
||||
: mIsPathConstructed(false),
|
||||
mIsGraphConstructed(false),
|
||||
mCell(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue