SaveStateBase: Remove unused "m_DidBios" bool.

This commit is contained in:
Christian Kenny 2020-05-15 18:15:36 -04:00 committed by Jonathan Li
parent 5ab97eb873
commit aec8e959d9
2 changed files with 0 additions and 3 deletions

View File

@ -78,7 +78,6 @@ void SaveStateBase::Init( SafeArray<u8>* memblock )
m_memory = memblock;
m_version = g_SaveVersion;
m_idx = 0;
m_DidBios = false;
}
void SaveStateBase::PrepBlock( int size )

View File

@ -46,8 +46,6 @@ protected:
int m_idx; // current read/write index of the allocation
bool m_DidBios;
public:
SaveStateBase( VmStateBuffer& memblock );
SaveStateBase( VmStateBuffer* memblock );