diff options
Diffstat (limited to 'src/osd/modules/debugger/qt/dasmwindow.cpp')
-rw-r--r-- | src/osd/modules/debugger/qt/dasmwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/modules/debugger/qt/dasmwindow.cpp b/src/osd/modules/debugger/qt/dasmwindow.cpp index a48d900beac..292215a469d 100644 --- a/src/osd/modules/debugger/qt/dasmwindow.cpp +++ b/src/osd/modules/debugger/qt/dasmwindow.cpp @@ -142,7 +142,7 @@ void DasmWindow::toggleBreakpointAtCursor(bool changedTo) device_debug *const cpuinfo = device->debug(); // Find an existing breakpoint at this address - INT32 bpindex = -1; + int32_t bpindex = -1; for (device_debug::breakpoint* bp = cpuinfo->breakpoint_first(); bp != nullptr; bp = bp->next()) @@ -189,7 +189,7 @@ void DasmWindow::enableBreakpointAtCursor(bool changedTo) if (bp != nullptr) { cpuinfo->breakpoint_enable(bp->index(), !bp->enabled()); - m_machine->debugger().console().printf("Breakpoint %X %s\n", (UINT32)bp->index(), bp->enabled() ? "enabled" : "disabled"); + m_machine->debugger().console().printf("Breakpoint %X %s\n", (uint32_t)bp->index(), bp->enabled() ? "enabled" : "disabled"); m_machine->debug_view().update_all(); m_machine->debugger().refresh_display(); } |