diff options
author | 2024-05-09 04:43:56 +1000 | |
---|---|---|
committer | 2024-05-09 04:43:56 +1000 | |
commit | e22aae63a1993f3f19dac5c48872baea9d342146 (patch) | |
tree | 773b05d9cf0decd518bd8275788324a0786ebd9d /src/osd/modules/debugger/debugwin.cpp | |
parent | 5b2280fa542280e9b60143ab9328de526dc46bd1 (diff) |
-merit/mtouchxl.cpp: Added touch-enabled layout.
-ui/tapectrl.cpp: Ensure device monitored for media change is up-to-date.
-osd/windows: Changed a pointer to a const reference in an API.
Diffstat (limited to 'src/osd/modules/debugger/debugwin.cpp')
-rw-r--r-- | src/osd/modules/debugger/debugwin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/debugger/debugwin.cpp b/src/osd/modules/debugger/debugwin.cpp index 43d20ae371d..6498a95fcd3 100644 --- a/src/osd/modules/debugger/debugwin.cpp +++ b/src/osd/modules/debugger/debugwin.cpp @@ -214,7 +214,7 @@ void debugger_windows::wait_for_debugger(device_t &device, bool firststop) // process everything else default: - winwindow_dispatch_message(*m_machine, &message); + winwindow_dispatch_message(*m_machine, message); break; } |