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

Merge pull request #54 from xyzz/fix_cgpregame_runlocked_crash

Fixed crash, "pure virtual method called", when calling doUpdate lambda from CGPreGame
This commit is contained in:
Alexander Shishkin
2014-11-11 04:07:54 +03:00

View File

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