diff options
Diffstat (limited to 'src/doom')
-rw-r--r-- | src/doom/m_menu.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/doom/m_menu.c b/src/doom/m_menu.c index a5e81775..4ca30926 100644 --- a/src/doom/m_menu.c +++ b/src/doom/m_menu.c @@ -1423,7 +1423,15 @@ boolean M_Responder (event_t* ev) static int lasty = 0; static int mousex = 0; static int lastx = 0; - + + // "close" button pressed on window? + if (ev->type == ev_quit) + { + S_StartSound(NULL,sfx_swtchn); + M_QuitDOOM(0); + return true; + } + // key is the key pressed, ch is the actual character typed ch = 0; |