diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-01 14:33:40 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-01 14:33:40 +0000 |
commit | f01a05415c03b0dd61297849ece2cfcce7f8d3e8 (patch) | |
tree | e46fd811bc29edaa3764a2d2a89e760621c8f794 /Projects/MediaController | |
parent | 6d2a08f1b77208de1f71dd4035d21f13e3f90462 (diff) | |
download | lufa-f01a05415c03b0dd61297849ece2cfcce7f8d3e8.tar.gz lufa-f01a05415c03b0dd61297849ece2cfcce7f8d3e8.tar.bz2 lufa-f01a05415c03b0dd61297849ece2cfcce7f8d3e8.zip |
Spell check library source code files.
Diffstat (limited to 'Projects/MediaController')
-rw-r--r-- | Projects/MediaController/MediaController.c | 2 |
1 files changed, 1 insertions, 1 deletions
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);
|