-fixed includes

This commit is contained in:
2025-07-31 16:39:38 +02:00
parent 6fc6b9f567
commit 6e8b990391
4 changed files with 28 additions and 11 deletions
+9
View File
@@ -16,6 +16,15 @@
#include "JaySynthMidiCC.h"
#include "JaySynth.h"
#include "synth/voice.h"
#include "synth/vco.h"
#include "synth/noise.h"
#include "synth/smooth.h"
#include "synth/vcf.h"
#include "synth/lfo.h"
#include "synth/env.h"
#include "synth/param_scale.h"
#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
+9
View File
@@ -14,6 +14,15 @@
#include "../JuceLibraryCode/JuceHeader.h"
#include "synth/synth_defs.h"
#include "synth/voice.h"
#include "synth/vco.h"
#include "synth/noise.h"
#include "synth/smooth.h"
#include "synth/vcf.h"
#include "synth/lfo.h"
#include "synth/env.h"
#include "synth/param_scale.h"
//==============================================================================
#define MIDICONTROLLER_TYPE_VELKEY 0x00000080
+10 -1
View File
@@ -24,7 +24,16 @@
//[Headers] -- You can add your own extra header files here --
#include "../JuceLibraryCode/JuceHeader.h"
#include "synth/synth_defs.h"
#include "synth/voice.h"
#include "synth/vco.h"
#include "synth/noise.h"
#include "synth/smooth.h"
#include "synth/vcf.h"
#include "synth/lfo.h"
#include "synth/env.h"
#include "synth/param_scale.h"
//[/Headers]
-10
View File
@@ -67,15 +67,5 @@ void SynthDebug(const char *fmtstr, ...);
#define jsy_min(a,b) (((a) < (b)) ? (a) : (b))
#endif
#include "voice.h"
#include "vco.h"
#include "noise.h"
#include "smooth.h"
#include "vcf.h"
#include "lfo.h"
#include "env.h"
#include "param_scale.h"
#endif // _SYNTH_DEFS_H_