aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--quantum/audio/audio.c2
-rw-r--r--quantum/audio/audio_arm.c2
-rw-r--r--quantum/audio/audio_pwm.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/quantum/audio/audio.c b/quantum/audio/audio.c
index 6d6833ec1..3da164c73 100644
--- a/quantum/audio/audio.c
+++ b/quantum/audio/audio.c
@@ -141,7 +141,7 @@ uint16_t notes_count;
141bool notes_repeat; 141bool notes_repeat;
142bool note_resting = false; 142bool note_resting = false;
143 143
144uint8_t current_note = 0; 144uint16_t current_note = 0;
145uint8_t rest_counter = 0; 145uint8_t rest_counter = 0;
146 146
147#ifdef VIBRATO_ENABLE 147#ifdef VIBRATO_ENABLE
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;
54bool notes_repeat; 54bool notes_repeat;
55bool note_resting = false; 55bool note_resting = false;
56 56
57uint8_t current_note = 0; 57uint16_t current_note = 0;
58uint8_t rest_counter = 0; 58uint8_t rest_counter = 0;
59 59
60#ifdef VIBRATO_ENABLE 60#ifdef VIBRATO_ENABLE
diff --git a/quantum/audio/audio_pwm.c b/quantum/audio/audio_pwm.c
index ded86edee..ed6713609 100644
--- a/quantum/audio/audio_pwm.c
+++ b/quantum/audio/audio_pwm.c
@@ -94,7 +94,7 @@ bool notes_repeat;
94float notes_rest; 94float notes_rest;
95bool note_resting = false; 95bool note_resting = false;
96 96
97uint8_t current_note = 0; 97uint16_t current_note = 0;
98uint8_t rest_counter = 0; 98uint8_t rest_counter = 0;
99 99
100#ifdef VIBRATO_ENABLE 100#ifdef VIBRATO_ENABLE