mirror of
https://github.com/holub/mame
synced 2025-10-08 09:30:17 +03:00
Fix linux compile
This commit is contained in:
parent
f9a9eafba0
commit
79fd7e15d1
@ -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
|
||||
//**************************************************************************
|
||||
|
@ -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();
|
||||
|
@ -5,6 +5,7 @@
|
||||
#include <QtGui/QPainter>
|
||||
#include <QtGui/QKeyEvent>
|
||||
|
||||
#include "debugger.h"
|
||||
#include "debuggerview.h"
|
||||
|
||||
#include "modules/lib/osdobj_common.h"
|
||||
|
Loading…
Reference in New Issue
Block a user