Closed davephillips closed 7 years ago
[dlphilp@The6300 src]$ grep NUM_LIGHTS . FreeVerb.cpp: NUM_LIGHTS OctaFlop.cpp: NUM_LIGHTS Quantum.cpp: NUM_LIGHTS SeqSwitch2.cpp: NUM_LIGHTS SeqSwitch.cpp: NUM_LIGHTS ShiftRegister.cpp: NUM_LIGHTS TrigBuf.cpp: NUM_LIGHTS
All these files include an incomplete module statement. For example, this :
FreeVerb() : Module( NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS ) {
will crash the latest Rack. This will fix the problem :
FreeVerb() : Module( NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS ) {
Best regards,
dp
I have added all NUM_LIGHTS now. It builds on my system, so I hope it is fixed now.
[dlphilp@The6300 src]$ grep NUM_LIGHTS . FreeVerb.cpp: NUM_LIGHTS OctaFlop.cpp: NUM_LIGHTS Quantum.cpp: NUM_LIGHTS SeqSwitch2.cpp: NUM_LIGHTS SeqSwitch.cpp: NUM_LIGHTS ShiftRegister.cpp: NUM_LIGHTS TrigBuf.cpp: NUM_LIGHTS
All these files include an incomplete module statement. For example, this :
FreeVerb() : Module( NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS ) {
will crash the latest Rack. This will fix the problem :
FreeVerb() : Module( NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS ) {
Best regards,
dp