1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-09-16 09:26:28 +02:00

Fixed crash, "pure virtual method called", when calling doUpdate lambda from CGPreGame.

This commit is contained in:
Ilya Zhuravlev
2014-11-10 20:20:52 +03:00
parent 176e029cd1
commit b22973e717

View File

@@ -38,7 +38,7 @@ public:
virtual ~IUpdateable(){}; //d-tor
};
class ILockedUpdatable: protected IUpdateable
class ILockedUpdatable: public IUpdateable
{
boost::recursive_mutex updateGuard;
public: