Explorar o código

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

Ilya Zhuravlev %!s(int64=11) %!d(string=hai) anos
pai
achega
b22973e717
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      client/gui/CIntObject.h

+ 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: