Return 0 when WM_MOUSEMOVE is processed.

This commit is contained in:
David Capello 2010-11-04 21:55:02 -03:00
parent 8abc967397
commit befd6a3766

View File

@ -338,6 +338,7 @@ static LRESULT CALLBACK directx_wnd_proc(HWND wnd, UINT message, WPARAM wparam,
if (_mouse_installed) {
POINTS p = MAKEPOINTS(lparam);
_al_win_mouse_handle_move(wnd, p.x, p.y);
return 0;
}
break;