From b81c43f479effb86fc1bae92b7c8df5599ce4034 Mon Sep 17 00:00:00 2001 From: Pete Favelle Date: Thu, 8 Dec 2022 17:19:35 +0000 Subject: [PATCH] Removed const from picosynth volume --- libraries/pico_synth/pico_synth.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/pico_synth/pico_synth.hpp b/libraries/pico_synth/pico_synth.hpp index 01fe55bc..89fc2195 100644 --- a/libraries/pico_synth/pico_synth.hpp +++ b/libraries/pico_synth/pico_synth.hpp @@ -106,7 +106,7 @@ namespace pimoroni { class PicoSynth { public: - const uint16_t volume = 0x2fff; + uint16_t volume = 0x2fff; static const uint CHANNEL_COUNT = 8; AudioChannel channels[CHANNEL_COUNT];