if (OddReport)\r
{\r
/* Set the report key code to the key code for the next data bit */\r
- ReportData->KeyCode[0] = BitBuffer_GetNextBit(Buffer) ? KEY_1 : KEY_0;\r
+ ReportData->KeyCode = BitBuffer_GetNextBit(Buffer) ? KEY_1 : KEY_0;\r
\r
/* If buffer is now empty, a new line must be sent instead of the terminating bit */\r
if (!(Buffer->Elements))\r
{\r
/* Set the keycode to the code for an enter key press */\r
- ReportData->KeyCode[0] = KEY_ENTER; \r
+ ReportData->KeyCode = KEY_ENTER; \r
}\r
}\r
\r