mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 12:14:32 +00:00
[OPENGLCFG] Fix a Clang-Cl warning about IDC_DEBUG_OUTPUT
"warning: use of logical '||' with constant operand [-Wconstant-logical-operand]" CORE-14306
This commit is contained in:
parent
a7ef5747b5
commit
71ebfd8717
1 changed files with 4 additions and 1 deletions
|
@ -170,8 +170,11 @@ INT_PTR CALLBACK GeneralPageProc(HWND hWndDlg, UINT uMsg, WPARAM wParam, LPARAM
|
|||
return TRUE;
|
||||
|
||||
case WM_COMMAND:
|
||||
if (LOWORD(wParam) == IDC_RENDERER || IDC_DEBUG_OUTPUT)
|
||||
if (LOWORD(wParam) == IDC_RENDERER ||
|
||||
LOWORD(wParam) == IDC_DEBUG_OUTPUT)
|
||||
{
|
||||
PropSheet_Changed(GetParent(hWndDlg), hWndDlg);
|
||||
}
|
||||
break;
|
||||
|
||||
case WM_NOTIFY:
|
||||
|
|
Loading…
Reference in a new issue