summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd')
-rw-r--r--src/osd/windows/window.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/osd/windows/window.cpp b/src/osd/windows/window.cpp
index 6c6b26a8357..50660cac32d 100644
--- a/src/osd/windows/window.cpp
+++ b/src/osd/windows/window.cpp
@@ -100,9 +100,6 @@ static int win_physical_height;
// event handling
static std::chrono::system_clock::time_point last_event_check;
-// debugger
-static int in_background;
-
static int ui_temp_pause;
static int ui_temp_was_paused;
@@ -1293,11 +1290,6 @@ LRESULT CALLBACK win_window_info::video_window_proc(HWND wnd, UINT message, WPAR
return DefWindowProc(wnd, message, wparam, lparam);
}
- // track whether we are in the foreground
- case WM_ACTIVATEAPP:
- in_background = !wparam;
- break;
-
// close: cause MAME to exit
case WM_CLOSE:
window->machine().schedule_exit();