Changeset 36150 in vbox
- Timestamp:
- Mar 3, 2011 2:38:13 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/MouseImpl.cpp
r35989 r36150 485 485 return rc; 486 486 487 *pcX = displayWidth ? ((x - 1) * 0xFFFF) / displayWidth: 0;488 *pcY = displayHeight ? ((y - 1) * 0xFFFF) / displayHeight: 0;487 *pcX = displayWidth ? ((x - 1) * 0xFFFF) / (LONG) displayWidth: 0; 488 *pcY = displayHeight ? ((y - 1) * 0xFFFF) / (LONG) displayHeight: 0; 489 489 } 490 490 else
Note:
See TracChangeset
for help on using the changeset viewer.