Removed const from picosynth volume
This commit is contained in:
parent
875119da70
commit
b81c43f479
|
@ -106,7 +106,7 @@ namespace pimoroni {
|
||||||
|
|
||||||
class PicoSynth {
|
class PicoSynth {
|
||||||
public:
|
public:
|
||||||
const uint16_t volume = 0x2fff;
|
uint16_t volume = 0x2fff;
|
||||||
|
|
||||||
static const uint CHANNEL_COUNT = 8;
|
static const uint CHANNEL_COUNT = 8;
|
||||||
AudioChannel channels[CHANNEL_COUNT];
|
AudioChannel channels[CHANNEL_COUNT];
|
||||||
|
|
Loading…
Reference in New Issue