summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-09-01 08:58:33 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-09-01 08:58:33 +0000
commit57b389311feeb19e13c7913c963278c1d4b3ebc4 (patch)
tree547fa48712b9e4717c11e7b3e07edf370702a95d /src/osd/modules/debugger
parent923cbc264822ff3118202860aa97871cd2e6de79 (diff)
Added window to osd_interface (nw)
win_monitor_info to class win_window_info to class, partial
Diffstat (limited to 'src/osd/modules/debugger')
-rw-r--r--src/osd/modules/debugger/debugwin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/modules/debugger/debugwin.c b/src/osd/modules/debugger/debugwin.c
index c7dee8c1a58..7092f870bda 100644
--- a/src/osd/modules/debugger/debugwin.c
+++ b/src/osd/modules/debugger/debugwin.c
@@ -512,7 +512,7 @@ static debugwin_info *debugwin_window_create(running_machine &machine, LPCSTR ti
// create the window
info->handler = handler;
info->wnd = win_create_window_ex_utf8(DEBUG_WINDOW_STYLE_EX, "MAMEDebugWindow", title, DEBUG_WINDOW_STYLE,
- 0, 0, 100, 100, win_window_list->hwnd, create_standard_menubar(), GetModuleHandle(NULL), info);
+ 0, 0, 100, 100, win_window_list->m_hwnd, create_standard_menubar(), GetModuleHandle(NULL), info);
if (info->wnd == NULL)
goto cleanup;
@@ -3074,7 +3074,7 @@ static void smart_show_all(BOOL show)
{
debugwin_info *info;
if (!show)
- SetForegroundWindow(win_window_list->hwnd);
+ SetForegroundWindow(win_window_list->m_hwnd);
for (info = window_list; info != NULL; info = info->next)
smart_show_window(info->wnd, show);
}