gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

mqbuildconfig.h (251B)


      1 #pragma once
      2 
      3 #define MQ_VOICE_EXPANSION 0
      4 
      5 namespace mqLib
      6 {
      7 	static constexpr bool g_pluginDemo = false;
      8 
      9 #if MQ_VOICE_EXPANSION
     10 	static constexpr bool g_useVoiceExpansion = true;
     11 #else
     12 	static constexpr bool g_useVoiceExpansion = false;
     13 #endif
     14 }
     15 
     16