1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

Ensures safe startup of the Ensoniq.

This commit is contained in:
Thomas Harte 2020-12-09 19:46:32 -05:00
parent a91a13b46b
commit 1928c955d9

View File

@ -89,8 +89,8 @@ class GLU: public Outputs::Speaker::SampleSource {
} oscillators[32];
// Some of these aren't actually needed on both threads.
uint8_t control;
int oscillator_count;
uint8_t control = 0;
int oscillator_count = 1;
void set_register(uint16_t address, uint8_t value);
} local_, remote_;