Add panic button

This commit is contained in:
Roland Rabien 2023-09-23 11:10:21 -07:00
commit b466218cbd
6 changed files with 15 additions and 11 deletions

View file

@ -21,12 +21,12 @@ public:
void showAboutInfo() override;
private:
WavetableAudioProcessor& vaProc;
WavetableAudioProcessor& wtProc;
gin::TriggeredScope scope { vaProc.scopeFifo };
gin::SynthesiserUsage usage { vaProc };
gin::TriggeredScope scope { wtProc.scopeFifo };
gin::SynthesiserUsage usage { wtProc };
Editor editor { vaProc };
Editor editor { wtProc };
#if JUCE_DEBUG
std::unique_ptr<melatonin::Inspector> inspector;