Browse Source

core: Fix variable initialize

tags/v2.9
tmk 8 years ago
parent
commit
7694eb62ac
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      tmk_core/common/action_macro.c

+ 1
- 1
tmk_core/common/action_macro.c View File

@@ -34,7 +34,7 @@ void action_macro_play(const macro_t *macro_p)
macro_t macro = END;
uint8_t interval = 0;

uint8_t mod_storage;
uint8_t mod_storage = 0;

if (!macro_p) return;
while (true) {

Loading…
Cancel
Save