X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/6d2a08f1b77208de1f71dd4035d21f13e3f90462..f01a05415c03b0dd61297849ece2cfcce7f8d3e8:/Projects/MediaController/MediaController.c diff --git a/Projects/MediaController/MediaController.c b/Projects/MediaController/MediaController.c index 0abb4541a..4fcbf911f 100644 --- a/Projects/MediaController/MediaController.c +++ b/Projects/MediaController/MediaController.c @@ -147,7 +147,7 @@ bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDIn uint8_t JoyStatus_LCL = Joystick_GetStatus(); uint8_t ButtonStatus_LCL = Buttons_GetStatus(); - /* Update the Media Control report with the user button pressess */ + /* Update the Media Control report with the user button presses */ MediaReport->Mute = ((ButtonStatus_LCL & BUTTONS_BUTTON1) ? true : false); MediaReport->PlayPause = ((JoyStatus_LCL & JOY_PRESS) ? true : false); MediaReport->VolumeUp = ((JoyStatus_LCL & JOY_UP) ? true : false);