Skip to content

Commit

Permalink
Fix a couple function names
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark committed Nov 28, 2020
1 parent 7afd9a8 commit fef807f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion keyboards/massdrop/alt/keymaps/reywood/rgb_matrix_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void rgb_matrix_init_user(void) {
led_cur_index = 0;
}

void rgb_matrix_run(void) {
void md_rgb_matrix_run(void) {
uint8_t led_this_run = 0;

if (led_cur == 0) { //Denotes start of new processing cycle in the case of chunked processing
Expand Down
2 changes: 1 addition & 1 deletion tmk_core/protocol/arm_atsam/md_rgb_matrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ void md_rgb_matrix_prepare(void) {
void led_set_one(int i, uint8_t r, uint8_t g, uint8_t b) {
if (i < ISSI3733_LED_COUNT) {
#ifdef USE_MASSDROP_CONFIGURATOR
md_rgb_matrix_massdrop_config_override(i);
md_rgb_matrix_config_override(i);
#else
led_buffer[i].r = r;
led_buffer[i].g = g;
Expand Down

0 comments on commit fef807f

Please sign in to comment.