]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
specialise music variables
authorJack Humbert <jack.humb@gmail.com>
Mon, 12 Dec 2016 21:06:41 +0000 (16:06 -0500)
committerJack Humbert <jack.humb@gmail.com>
Mon, 12 Dec 2016 21:06:41 +0000 (16:06 -0500)
quantum/process_keycode/process_music.c

index 2d52e47a728811ae6d65c7bef0fad1390befcaf0..bae43943e09cd85a76f3f9d44fc0a2e24e4165bc 100644 (file)
@@ -1,8 +1,8 @@
 #include "process_music.h"
 
 bool music_activated = false;
-uint8_t starting_note = 0x0C;
-int offset = 7;
+uint8_t music_starting_note = 0x0C;
+int music_offset = 7;
 
 // music sequencer
 static bool music_sequence_recording = false;
@@ -115,7 +115,7 @@ bool process_music(uint16_t keycode, keyrecord_t *record) {
         return false;
       }
 
-      float freq = ((float)220.0)*pow(2.0, -5.0)*pow(2.0,(starting_note + SCALE[record->event.key.col + offset])/12.0+(MATRIX_ROWS - record->event.key.row));
+      float freq = ((float)220.0)*pow(2.0, -5.0)*pow(2.0,(music_starting_note + SCALE[record->event.key.col + music_offset])/12.0+(MATRIX_ROWS - record->event.key.row));
       if (record->event.pressed) {
         play_note(freq, 0xF);
         if (music_sequence_recording) {