Fix linux compile

This commit is contained in:
Miodrag Milanovic 2016-01-12 10:02:55 +01:00
parent f9a9eafba0
commit 79fd7e15d1
3 changed files with 2 additions and 11 deletions

View File

@ -23,16 +23,6 @@
static running_machine *g_machine = nullptr;
static int g_atexit_registered = FALSE;
/***************************************************************************
FUNCTION PROTOTYPES
***************************************************************************/
static void debugger_exit(running_machine &machine);
//**************************************************************************
// DEBUGGER MANAGER
//**************************************************************************

View File

@ -166,7 +166,7 @@ void DasmWindow::toggleBreakpointAtCursor(bool changedTo)
debug_console_printf(*m_machine, "Breakpoint %X cleared\n", bpindex);
}
m_machine->debugger().view().update_all();
m_machine->debugger()refresh_display();
m_machine->debugger().refresh_display();
}
refreshAll();

View File

@ -5,6 +5,7 @@
#include <QtGui/QPainter>
#include <QtGui/QKeyEvent>
#include "debugger.h"
#include "debuggerview.h"
#include "modules/lib/osdobj_common.h"