My first proud commit

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4609 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
interdpth
2009-11-25 10:07:56 +00:00
parent 29774c35e8
commit 7118900d3b
4 changed files with 414 additions and 13 deletions

View File

@ -43,14 +43,15 @@ public:
curAddress = addr;
redraw();
}
int dataType;//u8,u16,u32
int curAddress;//Will be accessed by parent
private:
int YToAddress(int y);
void redraw() {Refresh();}
DebugInterface* debugger;
int curAddress;
int align;
int rowHeight;
@ -67,7 +68,9 @@ private:
{
VIEWAS_ASCII = 0,
VIEWAS_FP,
VIEWAS_HEX,
};
EViewAsType viewAsType;
DECLARE_EVENT_TABLE()