Removed const from picosynth volume

pull/603/head
Pete Favelle 2022-12-08 17:19:35 +00:00
rodzic 875119da70
commit b81c43f479
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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