mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 00:30:08 -06:00
Switch between JIT and Interpreter at runtime using the debug window (pause first!)
Plus assorted cleanup & fixes. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@312 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -341,9 +341,8 @@ void CCodeView::OnPaint(wxPaintEvent& event)
|
||||
dc.DrawRectangle(0, 0, 16, rc.height);
|
||||
dc.DrawRectangle(0, 0, rc.width, 5);
|
||||
// TODO - clean up this freaking mess!!!!!
|
||||
int i;
|
||||
|
||||
for (i = -numRows; i <= numRows; i++)
|
||||
for (int i = -numRows; i <= numRows; i++)
|
||||
{
|
||||
unsigned int address = curAddress + i * align;
|
||||
|
||||
@ -469,7 +468,7 @@ void CCodeView::OnPaint(wxPaintEvent& event)
|
||||
|
||||
dc.SetPen(currentPen);
|
||||
|
||||
for (i = 0; i < numBranches; i++)
|
||||
for (int i = 0; i < numBranches; i++)
|
||||
{
|
||||
int x = 300 + (branches[i].srcAddr % 9) * 8;
|
||||
_MoveTo(x-2, branches[i].src);
|
||||
|
Reference in New Issue
Block a user