MemoryWindow: Use p_pFakeVMEM, not the virtual mirror

They point to the same contents, so there's no reason to use the
mirror. This lets us make all the mirrors static.
This commit is contained in:
Jasper St. Pierre
2014-10-28 03:57:28 -07:00
parent 4a59750b30
commit dd0aadac97
3 changed files with 2 additions and 3 deletions

View File

@ -278,7 +278,7 @@ void CMemoryWindow::OnDumpMem2( wxCommandEvent& event )
// Write fake vmem to file
void CMemoryWindow::OnDumpFakeVMEM( wxCommandEvent& event )
{
DumpArray(File::GetUserPath(F_FAKEVMEMDUMP_IDX), Memory::m_pVirtualFakeVMEM, Memory::FAKEVMEM_SIZE);
DumpArray(File::GetUserPath(F_FAKEVMEMDUMP_IDX), Memory::m_pFakeVMEM, Memory::FAKEVMEM_SIZE);
}
void CMemoryWindow::U8(wxCommandEvent& event)