compile warn fix

This commit is contained in:
Dejvino
2026-02-28 19:52:36 +01:00
parent 11fabe1f29
commit 0e7b5925d2
2 changed files with 2 additions and 27 deletions
+2 -2
View File
@@ -19,13 +19,13 @@ void fill_sine_table() {
}
SynthEngine::SynthEngine(uint32_t sampleRate)
: _sampleRate(sampleRate),
: grid{},
_sampleRate(sampleRate),
_phase(0),
_increment(0),
_volume(0.5f),
_waveform(SAWTOOTH),
_isGateOpen(false),
grid{},
_rngState(12345)
{
fill_sine_table();