From b22973e717d966d68acf6d96bf5a7661011fb201 Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Mon, 10 Nov 2014 20:20:52 +0300 Subject: [PATCH] Fixed crash, "pure virtual method called", when calling doUpdate lambda from CGPreGame. --- client/gui/CIntObject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/gui/CIntObject.h b/client/gui/CIntObject.h index 307e2ec7d..e1b268509 100644 --- a/client/gui/CIntObject.h +++ b/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: