mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08: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:
committed by
Thomas Faber
parent
a7ef5747b5
commit
71ebfd8717
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user