1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-17 10:21:11 +00:00

Merge branch 'FixCrashOnExit' into 'master'

Fix crash on exit

See merge request OpenMW/openmw!2520
This commit is contained in:
psi29a 2022-11-21 20:29:00 +00:00
commit 2490e78a24

View File

@ -91,6 +91,7 @@ namespace MWWorld
MWWorld::Globals mGlobalVariables; MWWorld::Globals mGlobalVariables;
Misc::Rng::Generator mPrng; Misc::Rng::Generator mPrng;
Cells mCells; Cells mCells;
std::vector<int> mESMVersions; // the versions of esm files
std::string mCurrentWorldSpace; std::string mCurrentWorldSpace;
@ -138,8 +139,6 @@ namespace MWWorld
float mSimulationTimeScale = 1.0; float mSimulationTimeScale = 1.0;
std::vector<int> mESMVersions; // the versions of esm files
// not implemented // not implemented
World(const World&); World(const World&);
World& operator=(const World&); World& operator=(const World&);