Added controls to "Dolphin-Memory" window to let you change values in memory.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@970 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
omegadox
2008-10-26 09:09:53 +00:00
parent 225fb8a4c1
commit fae0a612f9
2 changed files with 31 additions and 1 deletions

View File

@ -24,6 +24,7 @@
#include "Debugger.h"
#include "MemoryView.h"
#include "Thread.h"
#include "StringUtil.h"
#include "CoreParameter.h"
@ -59,6 +60,7 @@ class CMemoryWindow
wxButton* buttonGo;
wxTextCtrl* addrbox;
wxTextCtrl* valbox;
DECLARE_EVENT_TABLE()
@ -66,6 +68,7 @@ class CMemoryWindow
void OnCallstackListChange(wxCommandEvent& event);
void OnAddrBoxChange(wxCommandEvent& event);
void OnHostMessage(wxCommandEvent& event);
void SetMemoryValue(wxCommandEvent& event);
};
#endif /*MEMORYWINDOW_*/