mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 18:35:20 +00:00
Fix uninitialized member
This commit is contained in:
parent
ffe19e7a52
commit
7907181c0c
@ -158,7 +158,9 @@ namespace
|
|||||||
namespace MWMechanics
|
namespace MWMechanics
|
||||||
{
|
{
|
||||||
PathFinder::PathFinder()
|
PathFinder::PathFinder()
|
||||||
:mIsPathConstructed(false),mIsGraphConstructed(false)
|
: mIsPathConstructed(false),
|
||||||
|
mIsGraphConstructed(false),
|
||||||
|
mCell(NULL)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user