mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 07:53:51 +00:00
silenced a warning and removed some tabs
This commit is contained in:
parent
33ecd8b66c
commit
583e7221ef
2 changed files with 8 additions and 8 deletions
|
@ -176,10 +176,10 @@ namespace MWWorld
|
|||
const Files::Collections& fileCollections,
|
||||
const std::string& master, const boost::filesystem::path& resDir,
|
||||
bool newGame, Environment& environment, const std::string& encoding)
|
||||
: mRendering (renderer,resDir), mPlayer (0), mLocalScripts (mStore), mGlobalVariables (0),
|
||||
mSky (false), mEnvironment (environment), mNextDynamicRecord (0), mCells (mStore, mEsm, *this), mDebugging(physEng)
|
||||
: mRendering (renderer,resDir), mDebugging(physEng), mPlayer (0), mLocalScripts (mStore), mGlobalVariables (0),
|
||||
mSky (false), mEnvironment (environment), mNextDynamicRecord (0), mCells (mStore, mEsm, *this)
|
||||
{
|
||||
std::cout << "Creating myworld\n";
|
||||
std::cout << "Creating myworld\n";
|
||||
mPhysEngine = physEng;
|
||||
|
||||
mPhysics = new PhysicsSystem(renderer, physEng);
|
||||
|
@ -218,7 +218,7 @@ namespace MWWorld
|
|||
|
||||
delete mPhysics;
|
||||
|
||||
delete mPlayer;
|
||||
delete mPlayer;
|
||||
}
|
||||
|
||||
const ESM::Cell *World::getExterior (const std::string& cellName) const
|
||||
|
|
|
@ -66,7 +66,7 @@ namespace MWWorld
|
|||
private:
|
||||
|
||||
MWRender::RenderingManager mRendering;
|
||||
MWRender::Debugging mDebugging;
|
||||
MWRender::Debugging mDebugging;
|
||||
MWWorld::Scene *mWorldScene;
|
||||
MWWorld::Player *mPlayer;
|
||||
ESM::ESMReader mEsm;
|
||||
|
|
Loading…
Reference in a new issue