Fixed incorrect definition of HID_ALIGN_DATA() causing incorrect HID report item data alignment.
This commit is contained in:
parent
f79f9abd28
commit
c2de01b661
2 changed files with 2 additions and 1 deletions
|
@ -137,7 +137,7 @@
|
|||
*
|
||||
* \return Left-aligned data of the given report item's pre-retrived value for the given datatype
|
||||
*/
|
||||
#define HID_ALIGN_DATA(reportitem, type) ((type)(reportitem->Value << (sizeof(type) - reportitem->Attributes.BitSize)))
|
||||
#define HID_ALIGN_DATA(reportitem, type) ((type)(reportitem->Value << ((8 * sizeof(type)) - reportitem->Attributes.BitSize)))
|
||||
|
||||
/* Public Interface - May be used in end-application: */
|
||||
/* Enums: */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue