diff options
Diffstat (limited to 'src/osd/windows/window.c')
-rw-r--r-- | src/osd/windows/window.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osd/windows/window.c b/src/osd/windows/window.c index 8e1d697dec3..64a1cb20f64 100644 --- a/src/osd/windows/window.c +++ b/src/osd/windows/window.c @@ -834,8 +834,8 @@ static void create_window_class(void) WNDCLASS wc = { 0 }; // initialize the description of the window class - wc.lpszClassName = TEXT("MAME"); - wc.hInstance = GetModuleHandle(NULL); + wc.lpszClassName = TEXT("MAME"); + wc.hInstance = GetModuleHandle(NULL); #ifdef MESS wc.lpfnWndProc = win_mess_window_proc; #else @@ -1218,8 +1218,8 @@ LRESULT CALLBACK winwindow_video_window_proc(HWND wnd, UINT message, WPARAM wpar PAINTSTRUCT pstruct; HDC hdc = BeginPaint(wnd, &pstruct); draw_video_contents(window, hdc, TRUE); - if (win_has_menu(window)) - DrawMenuBar(window->hwnd); + if (win_has_menu(window)) + DrawMenuBar(window->hwnd); EndPaint(wnd, &pstruct); break; } |