summaryrefslogtreecommitdiff
path: root/quantum/audio/voices.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/audio/voices.c')
-rw-r--r--quantum/audio/voices.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/audio/voices.c b/quantum/audio/voices.c
index 1c08a3af36..01f257f4d4 100644
--- a/quantum/audio/voices.c
+++ b/quantum/audio/voices.c
@@ -36,11 +36,11 @@ void set_voice(voice_type v) {
voice = v;
}
-void voice_iterate() {
+void voice_iterate(void) {
voice = (voice + 1) % number_of_voices;
}
-void voice_deiterate() {
+void voice_deiterate(void) {
voice = (voice - 1 + number_of_voices) % number_of_voices;
}