mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Update CtrlMemView.cpp
This commit is contained in:
parent
83d65376a1
commit
d1d957521d
1 changed files with 2 additions and 2 deletions
|
@ -358,11 +358,11 @@ void CtrlMemView::onMouseUp(WPARAM wParam, LPARAM lParam, int button)
|
|||
}
|
||||
else
|
||||
{
|
||||
outputfile = fopen("Ram.dump","w"); // Could also dump Vram, but not useful for now.
|
||||
outputfile = fopen("Ram.dump","wb"); // Could also dump Vram, but not useful for now.
|
||||
fwrite(Memory::GetPointer(0x08800000), 1, 0x1800000, outputfile);
|
||||
fclose(outputfile);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
case ID_MEMVIEW_COPYVALUE:
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue