sane.ds: Don't compare with TRUE.
This commit is contained in:
parent
f93252aa9a
commit
43b7a0db48
|
@ -994,7 +994,7 @@ static INT_PTR CALLBACK DialogProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM
|
||||||
switch (((NMHDR*)lParam)->code)
|
switch (((NMHDR*)lParam)->code)
|
||||||
{
|
{
|
||||||
case PSN_APPLY:
|
case PSN_APPLY:
|
||||||
if (psn->lParam == TRUE)
|
if (psn->lParam)
|
||||||
{
|
{
|
||||||
activeDS.currentState = 6;
|
activeDS.currentState = 6;
|
||||||
if (activeDS.windowMessage)
|
if (activeDS.windowMessage)
|
||||||
|
|
Loading…
Reference in New Issue