Change the font in DebuggerWX to something legible kthx

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1667 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
bushing
2008-12-26 03:46:04 +00:00
parent a9e588f4f3
commit ba58962d24
5 changed files with 6 additions and 7 deletions

View File

@ -235,10 +235,9 @@ void CMemoryView::OnErase(wxEraseEvent& event)
void CMemoryView::OnPaint(wxPaintEvent& event)
{
wxPaintDC dc(this);
int fontSize = 8;
int fontSize = 9;
wxRect rc = GetClientRect();
wxFont font(fontSize, wxFONTFAMILY_MODERN, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_LIGHT);
dc.SetFont(font);
dc.SetFont(DefaultFont);
struct branch
{
int src, dst, srcAddr;