summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/windows/winmain.c
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/windows/winmain.c
parent923cbc264822ff3118202860aa97871cd2e6de79 (diff)
Added window to osd_interface (nw)
win_monitor_info to class win_window_info to class, partial
Diffstat (limited to 'src/osd/windows/winmain.c')
-rw-r--r--src/osd/windows/winmain.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osd/windows/winmain.c b/src/osd/windows/winmain.c
index 55ac2ea0dbe..e63f2a29a63 100644
--- a/src/osd/windows/winmain.c
+++ b/src/osd/windows/winmain.c
@@ -494,7 +494,7 @@ static void winui_output_error(delegate_late_bind *param, const char *format, va
winwindow_toggle_full_screen();
vsnprintf(buffer, ARRAY_LENGTH(buffer), format, argptr);
- win_message_box_utf8(win_window_list ? win_window_list->hwnd : NULL, buffer, emulator_info::get_appname(), MB_OK);
+ win_message_box_utf8(win_window_list ? win_window_list->m_hwnd : NULL, buffer, emulator_info::get_appname(), MB_OK);
}
@@ -625,11 +625,11 @@ void windows_osd_interface::init(running_machine &machine)
// notify listeners of screen configuration
astring tempstring;
- for (win_window_info *info = win_window_list; info != NULL; info = info->next)
+ for (win_window_info *info = win_window_list; info != NULL; info = info->m_next)
{
- char *tmp = utf8_from_tstring(info->monitor->info.szDevice);
+ char *tmp = utf8_from_tstring(info->m_monitor->info.szDevice);
tempstring.printf("Orientation(%s)", tmp);
- output_set_value(tempstring, info->targetorient);
+ output_set_value(tempstring, info->m_targetorient);
osd_free(tmp);
}