Fix for saving SaveStates - VirtualEFB does not exist any more, so do not try to save it.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4874 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
86b46f7de9
commit
8245e4115d
|
@ -366,7 +366,7 @@ void DoState(PointerWrap &p)
|
|||
{
|
||||
bool wii = Core::GetStartupParameter().bWii;
|
||||
p.DoArray(m_pPhysicalRAM, RAM_SIZE);
|
||||
p.DoArray(m_pVirtualEFB, EFB_SIZE);
|
||||
// p.DoArray(m_pVirtualEFB, EFB_SIZE);
|
||||
p.DoArray(m_pVirtualL1Cache, L1_CACHE_SIZE);
|
||||
if (wii)
|
||||
p.DoArray(m_pEXRAM, EXRAM_SIZE);
|
||||
|
|
Loading…
Reference in New Issue