(ProbDecodeContext): moved member declaration to class where it actually used.

This commit is contained in:
morkt 2016-01-27 11:39:17 +04:00
parent f6fd50bae8
commit 82f7c2de16
2 changed files with 1 additions and 1 deletions

View File

@ -1371,7 +1371,6 @@ namespace GameRes.Formats.Entis
protected uint m_dwCodeRegister; protected uint m_dwCodeRegister;
protected uint m_dwAugendRegister; protected uint m_dwAugendRegister;
protected int m_nPostBitCount; protected int m_nPostBitCount;
protected byte[] m_bytLastSymbol = new byte[4];
protected ErisaProbModel m_pPhraseLenProb = new ErisaProbModel(); protected ErisaProbModel m_pPhraseLenProb = new ErisaProbModel();
protected ErisaProbModel m_pPhraseIndexProb = new ErisaProbModel(); protected ErisaProbModel m_pPhraseIndexProb = new ErisaProbModel();

View File

@ -19,6 +19,7 @@ namespace GameRes.Formats.Entis
ErisaProbBase m_pProbERISA; ErisaProbBase m_pProbERISA;
NemesisPhraseLookup[] m_pNemesisLookup; NemesisPhraseLookup[] m_pNemesisLookup;
byte[] m_bytLastSymbol = new byte[4];
public NemesisDecodeContext (uint buffer_size = 0x10000) : base (buffer_size) public NemesisDecodeContext (uint buffer_size = 0x10000) : base (buffer_size)
{ {