1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Fixed a compiler error in SimpleFFTDemo

This commit is contained in:
Tom Poole 2018-04-06 08:07:20 +01:00
parent 7bc75e24c1
commit 73418dad1f

View file

@ -52,10 +52,10 @@ class SimpleFFTDemo : public AudioAppComponent,
private Timer
{
public:
SimpleFFTDemo()
#ifdef JUCE_DEMO_RUNNER
: AudioAppComponent (getSharedAudioDeviceManager (1, 0)),
#endif
SimpleFFTDemo() :
#ifdef JUCE_DEMO_RUNNER
AudioAppComponent (getSharedAudioDeviceManager (1, 0)),
#endif
forwardFFT (fftOrder),
spectrogramImage (Image::RGB, 512, 512, true)
{