OPZ: implement LFO2

issue #831

untested and I can't test now
This commit is contained in:
tildearrow 2023-02-03 17:00:15 -05:00
parent d546d135b9
commit 43ba2ff8f2
7 changed files with 104 additions and 16 deletions

View file

@ -41,8 +41,14 @@ class DivPlatformOPM: public DivPlatformFMBase {
0x00, 0x08, 0x10, 0x18
};
unsigned char lfoValue, lfoValue2, lfoShape, lfoShape2;
DivPlatformOPM():
DivPlatformFMBase() {}
DivPlatformFMBase(),
lfoValue(0),
lfoValue2(0),
lfoShape(0),
lfoShape2(0) {}
};
#endif