diff options
author | Marco Monaco <marco@viafoura.com> | 2019-02-26 00:38:21 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-03-05 15:03:24 -0800 |
commit | 73d8593352b910d9fba0953b54141875f0689486 (patch) | |
tree | 4f0e66d98034ef6fb6eebb57821a8dfccae8329b /quantum/audio/audio_arm.c | |
parent | dbfbe0d7f0d829fdebb3be5dff1c1dcc4b677568 (diff) | |
download | qmk_firmware-73d8593352b910d9fba0953b54141875f0689486.tar.gz qmk_firmware-73d8593352b910d9fba0953b54141875f0689486.zip |
increase size of note counter variable to avoid overflow
Diffstat (limited to 'quantum/audio/audio_arm.c')
-rw-r--r-- | quantum/audio/audio_arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/audio/audio_arm.c b/quantum/audio/audio_arm.c index a3a403957..6760015ef 100644 --- a/quantum/audio/audio_arm.c +++ b/quantum/audio/audio_arm.c | |||
@@ -54,7 +54,7 @@ uint16_t notes_count; | |||
54 | bool notes_repeat; | 54 | bool notes_repeat; |
55 | bool note_resting = false; | 55 | bool note_resting = false; |
56 | 56 | ||
57 | uint8_t current_note = 0; | 57 | uint16_t current_note = 0; |
58 | uint8_t rest_counter = 0; | 58 | uint8_t rest_counter = 0; |
59 | 59 | ||
60 | #ifdef VIBRATO_ENABLE | 60 | #ifdef VIBRATO_ENABLE |