relocate the mainram dump to the dump dir

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2101 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2009-02-04 03:17:29 +00:00
parent 4307803090
commit 5f0ae71fd1
2 changed files with 3 additions and 4 deletions

View File

@ -228,7 +228,7 @@ void CMemoryWindow::OnHostMessage(wxCommandEvent& event)
// so we can view memory in a tile/hex viewer for data analysis
void CMemoryWindow::OnDumpMemory( wxCommandEvent& event )
{
FILE* pDumpFile = fopen(FULL_MEMORY_DUMP_DIR, "wb");
FILE* pDumpFile = fopen(MAINRAM_DUMP_FILE, "wb");
if (pDumpFile)
{
if (Memory::m_pRAM)