2
0
Эх сурвалжийг харах

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

Ilya Zhuravlev 11 жил өмнө
parent
commit
b22973e717

+ 1 - 1
client/gui/CIntObject.h

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