make debugger a bit more readable; TODO: merge code for codeview and memoryview, maybe use wxGrid?

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1786 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2009-01-05 03:09:13 +00:00
parent 88291fe8be
commit 906c8a5a63
2 changed files with 19 additions and 16 deletions

View File

@ -256,7 +256,7 @@ void CMemoryView::OnPaint(wxPaintEvent& event)
wxPen selPen(_T("#808080")); // gray
nullPen.SetStyle(wxTRANSPARENT);
wxBrush currentBrush(_T("#FFEfE8")); // ligh gray
wxBrush currentBrush(_T("#FFEfE8")); // light gray
wxBrush pcBrush(_T("#70FF70")); // green
wxBrush bpBrush(_T("#FF3311")); // red
wxBrush bgBrush(bgColor);
@ -394,7 +394,7 @@ void CMemoryView::OnPaint(wxPaintEvent& event)
if (debugger->isBreakpoint(address))
{
dc.SetBrush(bpBrush);
dc.DrawRectangle(2, rowY1, 7, 7);
dc.DrawRectangle(2, rowY1 + 1, 11, 11);
// DrawIconEx(hdc, 2, rowY1, breakPoint, 32, 32, 0, 0, DI_NORMAL);
}
}