1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-23 08:09:42 +00:00

Fix uninitialized member

This commit is contained in:
scrawl 2014-02-04 07:51:18 +01:00
parent ffe19e7a52
commit 7907181c0c

View file

@ -158,7 +158,9 @@ namespace
namespace MWMechanics
{
PathFinder::PathFinder()
:mIsPathConstructed(false),mIsGraphConstructed(false)
: mIsPathConstructed(false),
mIsGraphConstructed(false),
mCell(NULL)
{
}