From dde8ee0611371656cc4a86f5683720360e5ceefc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Mocquillon?= Date: Sun, 20 Nov 2022 14:35:39 +0100 Subject: [PATCH] Delay the deletion of esm versions after the deletion of the scene as it is used in one of its workers (the objectpaging one) --- apps/openmw/mwworld/worldimp.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/openmw/mwworld/worldimp.hpp b/apps/openmw/mwworld/worldimp.hpp index a3a17128ae..571b0963eb 100644 --- a/apps/openmw/mwworld/worldimp.hpp +++ b/apps/openmw/mwworld/worldimp.hpp @@ -91,6 +91,7 @@ namespace MWWorld MWWorld::Globals mGlobalVariables; Misc::Rng::Generator mPrng; Cells mCells; + std::vector mESMVersions; // the versions of esm files std::string mCurrentWorldSpace; @@ -138,8 +139,6 @@ namespace MWWorld float mSimulationTimeScale = 1.0; - std::vector mESMVersions; // the versions of esm files - // not implemented World(const World&); World& operator=(const World&);