- Timestamp:
- Jul 22, 2017 7:59:39 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/PS2M.cpp
r68052 r68088 557 557 { 558 558 pThis->fReportedB = pThis->fAccumB; 559 pThis->fAccumB = pThis->fCurrB;559 pThis->fAccumB = 0; 560 560 } 561 561 } … … 848 848 #else 849 849 /* If more movement is accumulated, report it and restart the timer. */ 850 uHaveEvents = pThis->iAccumX | pThis->iAccumY | pThis->iAccumZ | (pThis->f AccumB != pThis->fReportedB);850 uHaveEvents = pThis->iAccumX | pThis->iAccumY | pThis->iAccumZ | (pThis->fCurrB != pThis->fReportedB); 851 851 LogFlowFunc(("Have%s events\n", uHaveEvents ? "" : " no")); 852 852
Note:
See TracChangeset
for help on using the changeset viewer.