From 0e7c0cca02ca2e16fbb43f68df936b9298b6e83e Mon Sep 17 00:00:00 2001 From: Shaojun Li Date: Fri, 24 Apr 2020 13:38:52 +0800 Subject: [PATCH] Fix the close button of about dialog not working. --- src/win/win_about.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/win/win_about.c b/src/win/win_about.c index b0001b177..0c57c346d 100644 --- a/src/win/win_about.c +++ b/src/win/win_about.c @@ -53,6 +53,7 @@ AboutDialogProcedure(HWND hdlg, UINT message, WPARAM wParam, LPARAM lParam) case WM_COMMAND: switch (LOWORD(wParam)) { case IDOK: + case IDCANCEL: EndDialog(hdlg, 0); plat_pause(0); return TRUE;