diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-02-16 17:37:46 +0100 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-02-16 17:37:46 +0100 |
commit | 1ac5dc9e524444ef98cfab1d9822151a6bfb9621 (patch) | |
tree | fab688c920ee5c04824c7270c0299ed94d6f85fd /quantum/audio | |
parent | 15dc540cac293b6f2e1433b701408c89e72c52ec (diff) | |
download | qmk_firmware-1ac5dc9e524444ef98cfab1d9822151a6bfb9621.tar.gz qmk_firmware-1ac5dc9e524444ef98cfab1d9822151a6bfb9621.tar.xz |
fix travis and reduce warnings
Diffstat (limited to 'quantum/audio')
-rw-r--r-- | quantum/audio/voices.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/audio/voices.c b/quantum/audio/voices.c index 8326e91ea..c2edb75f0 100644 --- a/quantum/audio/voices.c +++ b/quantum/audio/voices.c @@ -24,6 +24,7 @@ void voice_deiterate() { float voice_envelope(float frequency) { // envelope_index ranges from 0 to 0xFFFF, which is preserved at 880.0 Hz + __attribute__ ((unused)) uint16_t compensated_index = (uint16_t)((float)envelope_index * (880.0 / frequency)); switch (voice) { |