Commit 0d0cc390 authored by Guy L. Albertelli's avatar Guy L. Albertelli Committed by Alexandre Julliard

Fixed test so 0xffffffff is properly recognized.

parent ebbb9ebe
......@@ -3372,7 +3372,7 @@ TOOLBAR_SetHotItem (HWND hwnd, WPARAM wParam)
{
infoPtr->nHotItem = (INT)wParam;
if (wParam >=0)
if ((INT)wParam >=0)
{
btnPtr = &infoPtr->buttons[(INT)wParam];
btnPtr->bHot = TRUE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment