summaryrefslogtreecommitdiff
path: root/quantum/audio
diff options
context:
space:
mode:
authorDrashna Jael're <drashna@live.com>2022-03-25 16:31:52 -0700
committerDrashna Jael're <drashna@live.com>2022-03-25 16:31:52 -0700
commit07a3743e878e92a9236736a65d167de26478def6 (patch)
tree4293dd7c12bfdb193519621ac4887291d32081f5 /quantum/audio
parent53ff570bf068e04740f187163774327839dfa68b (diff)
Fix compilation issues
Diffstat (limited to 'quantum/audio')
-rw-r--r--quantum/audio/voices.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/quantum/audio/voices.c b/quantum/audio/voices.c
index 4b7d14171f..eb860a7ef4 100644
--- a/quantum/audio/voices.c
+++ b/quantum/audio/voices.c
@@ -36,10 +36,6 @@ void set_voice(voice_type v) {
voice = v;
}
-<<<<<<< HEAD
-void voice_iterate() { voice = (voice + 1) % number_of_voices; }
-void voice_deiterate() { voice = (voice - 1 + number_of_voices) % number_of_voices; }
-=======
void voice_iterate() {
voice = (voice + 1) % number_of_voices;
}
@@ -47,7 +43,6 @@ void voice_iterate() {
void voice_deiterate() {
voice = (voice - 1 + number_of_voices) % number_of_voices;
}
->>>>>>> qmk/master
#ifdef AUDIO_VOICES
float mod(float a, int b) {