From adfef56fd8c56c490488cb9909e2574e0b327f60 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Wed, 21 Dec 2022 11:04:41 -0500 Subject: [PATCH] - fix OpenGL ES selection on the windows startup dialog --- src/common/platform/win32/i_system.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/common/platform/win32/i_system.cpp b/src/common/platform/win32/i_system.cpp index 1e4c73d9f..bd1d0dbbe 100644 --- a/src/common/platform/win32/i_system.cpp +++ b/src/common/platform/win32/i_system.cpp @@ -386,10 +386,8 @@ BOOL CALLBACK IWADBoxCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa case 1: SendDlgItemMessage( hDlg, IDC_WELCOME_VULKAN2, BM_SETCHECK, BST_CHECKED, 0 ); break; - case 2: - SendDlgItemMessage( hDlg, IDC_WELCOME_VULKAN3, BM_SETCHECK, BST_CHECKED, 0 ); - break; #ifdef HAVE_GLES2 + case 2: case 3: SendDlgItemMessage( hDlg, IDC_WELCOME_VULKAN4, BM_SETCHECK, BST_CHECKED, 0 ); break;