1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-04-15 11:46:56 +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
commit 0b1ee70e56

View File

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