Successfully formatted the rev1.c file using qmk format-c command as requested by QMK member in pull request

This commit is contained in:
atechofficials 2024-06-25 05:27:51 +05:30
parent 50be79cf72
commit d9063a6341

View File

@ -18,19 +18,18 @@
#if defined(DIP_SWITCH_ENABLE) #if defined(DIP_SWITCH_ENABLE)
bool dip_switch_update_kb(uint8_t index, bool active) { bool dip_switch_update_kb(uint8_t index, bool active) {
if(!dip_switch_update_user(index, active)) if (!dip_switch_update_user(index, active)) {
{ return false;
return false; }
} switch (index) {
switch (index) {
case 0: case 0:
// Encode Push Button Pressed // Encode Push Button Pressed
if(active) { if (active) {
// Toggle Host Mute // Toggle Host Mute
tap_code(KC_MUTE); tap_code(KC_MUTE);
} }
break; break;
} }
return true; return true;
} }
#endif #endif