Index: firmware/drivers/button.c =================================================================== --- firmware/drivers/button.c (revision 15984) +++ firmware/drivers/button.c (working copy) @@ -418,6 +418,9 @@ #if CONFIG_KEYPAD == RECORDER_PAD | BUTTON_F1 | BUTTON_F3 #endif +#if CONFIG_KEYPAD == SANSA_C200_PAD + | BUTTON_VOL_UP | BUTTON_VOL_DOWN +#endif ); if (button & BUTTON_LEFT) @@ -442,6 +445,12 @@ if (button & BUTTON_F3) newbutton |= BUTTON_F1; #endif +#if CONFIG_KEYPAD == SANSA_C200_PAD + if (button & BUTTON_VOL_UP) + newbutton |= BUTTON_VOL_DOWN; + if (button & BUTTON_VOL_DOWN) + newbutton |= BUTTON_VOL_UP; +#endif return newbutton; }