Skip to content

Commit

Permalink
setrgb(): Use arrow operator (qmk#10451)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored Sep 26, 2020
1 parent 1b7101f commit c16ee22
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions keyboards/mxss/rgblight.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ extern LED_TYPE fleds[2];
hs_set fled_hs[2];

void copyrgb(LED_TYPE *src, LED_TYPE *dst) {
(*dst).r = (*src).r;
(*dst).g = (*src).g;
(*dst).b = (*src).b;
dst->r = src->r;
dst->g = src->g;
dst->b = src->b;
}

void rgblight_set_clipping_range(uint8_t start_pos, uint8_t num_leds) {
Expand Down Expand Up @@ -145,11 +145,11 @@ void sethsv_raw(uint8_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1) {
void sethsv(uint8_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1) { sethsv_raw(hue, sat, val > RGBLIGHT_LIMIT_VAL ? RGBLIGHT_LIMIT_VAL : val, led1); }

void setrgb(uint8_t r, uint8_t g, uint8_t b, LED_TYPE *led1) {
(*led1).r = r;
(*led1).g = g;
(*led1).b = b;
led1->r = r;
led1->g = g;
led1->b = b;
#ifdef RGBW
(*led1).w = 0;
led1->w = 0;
#endif
}

Expand Down
8 changes: 4 additions & 4 deletions quantum/rgblight.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ void sethsv_raw(uint8_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1) {
void sethsv(uint8_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1) { sethsv_raw(hue, sat, val > RGBLIGHT_LIMIT_VAL ? RGBLIGHT_LIMIT_VAL : val, led1); }

void setrgb(uint8_t r, uint8_t g, uint8_t b, LED_TYPE *led1) {
(*led1).r = r;
(*led1).g = g;
(*led1).b = b;
led1->r = r;
led1->g = g;
led1->b = b;
#ifdef RGBW
(*led1).w = 0;
led1->w = 0;
#endif
}

Expand Down

0 comments on commit c16ee22

Please sign in to comment.