diff options
| author | 2016-04-17 18:27:07 -0400 | |
|---|---|---|
| committer | 2016-04-18 10:03:01 -0400 | |
| commit | 870db16e99efcb64a95ca1e321e8dacc389ce53e (patch) | |
| tree | e3d1db14b8498d4cd06f55a65529f9700f8d6e57 /src/osd/modules/debugger/debugwin.cpp | |
| parent | 55d3e544e013174880c8f208264683aac6d711f9 (diff) | |
Standardize platform window pointer storage in osd_window.
Also encapsulate show/hide capture/release cursor functionality.
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 3c85b5f4119..c3994efbd2f 100644 --- a/src/osd/modules/debugger/debugwin.cpp +++ b/src/osd/modules/debugger/debugwin.cpp @@ -236,7 +236,7 @@ void debugger_windows::show_all() void debugger_windows::hide_all() { - SetForegroundWindow(win_window_list->m_hwnd); + SetForegroundWindow(win_window_list->platform_window<HWND>()); for (debugwin_info &info : m_window_list) info.hide(); } |
