Fixed innocent compiler warning in engine.cpp

This commit is contained in:
Nicolay Korslund 2010-07-07 09:55:44 +02:00
parent 2ec96ed7de
commit 97ad6592ea

View file

@ -65,8 +65,12 @@ void OMW::Engine::processCommands()
}
OMW::Engine::Engine()
: mDebug (false), mVerboseScripts (false), mNewGame (false), mScriptManager (0),
mScriptContext (0), mEnableCommandServer (false)
: mDebug (false)
, mVerboseScripts (false)
, mNewGame (false)
, mEnableCommandServer (false)
, mScriptManager (0)
, mScriptContext (0)
{
}