From 04464a325ef7411e0ad4a19cec9108d9fdb24082 Mon Sep 17 00:00:00 2001 From: Corantin H Date: Tue, 28 May 2019 15:39:11 +0200 Subject: [PATCH] fix --- src/engine/client/client.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/engine/client/client.h b/src/engine/client/client.h index be8ca6154..40b15a86b 100644 --- a/src/engine/client/client.h +++ b/src/engine/client/client.h @@ -57,9 +57,11 @@ public: class CDemoEdit : public IJob { - IStorage *m_pStorage; IConsole *m_pConsole; + IStorage *m_pStorage; + CDemoEditor m_DemoEditor; + char m_pDemo[256]; char m_pDst[256]; int m_StartTick; @@ -67,7 +69,6 @@ class CDemoEdit : public IJob public: CDemoEdit(const char *pNetVersion, CSnapshotDelta *pSnapshotDelta, IConsole *pConsole, IStorage *pStorage, const char *pDemo, const char *pDst, int StartTick, int EndTick); - ~CDemoEdit(); void Run(); };