mirror of https://github.com/PCSX2/pcsx2.git
SaveStateBase: Remove unused "m_DidBios" bool.
This commit is contained in:
parent
5ab97eb873
commit
aec8e959d9
|
@ -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 )
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue