Removed const from picosynth volume

This commit is contained in:
Pete Favelle 2022-12-08 17:19:35 +00:00
parent 875119da70
commit b81c43f479
1 changed files with 1 additions and 1 deletions

View File

@ -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];