diff options
Diffstat (limited to 'src/osd')
| -rw-r--r-- | src/osd/windows/debugwin.c | 4 | ||||
| -rw-r--r-- | src/osd/windows/window.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/osd/windows/debugwin.c b/src/osd/windows/debugwin.c index d9470e317fc..5e6cb50caa8 100644 --- a/src/osd/windows/debugwin.c +++ b/src/osd/windows/debugwin.c @@ -152,7 +152,7 @@ struct _debugwin_info int last_history; HWND otherwnd[MAX_OTHER_WND]; - + running_machine * machine; }; @@ -540,7 +540,7 @@ static debugwin_info *debug_window_create(running_machine *machine, LPCSTR title info->handle_command = global_handle_command; info->handle_key = global_handle_key; strcpy(info->edit_defstr, ""); - + info->machine = machine; // hook us in diff --git a/src/osd/windows/window.h b/src/osd/windows/window.h index 42cf2f8a1f0..490309bbae5 100644 --- a/src/osd/windows/window.h +++ b/src/osd/windows/window.h @@ -78,7 +78,7 @@ struct _win_window_info // drawing data void * drawdata; - + running_machine * machine; }; |
