--- linuxsampler/trunk/src/engines/gig/Voice.cpp 2005/01/29 15:17:59 354 +++ linuxsampler/trunk/src/engines/gig/Voice.cpp 2005/02/09 01:22:18 361 @@ -58,10 +58,13 @@ pLFO2 = NULL; pLFO3 = NULL; KeyGroup = 0; - SynthesisMode = 0; //Set all mode bits to 0 first - + SynthesisMode = 0; // set all mode bits to 0 first // select synthesis implementation (currently either pure C++ or MMX+SSE(1)) + #if ARCH_X86 SYNTHESIS_MODE_SET_IMPLEMENTATION(SynthesisMode, Features::supportsMMX() && Features::supportsSSE()); + #else + SYNTHESIS_MODE_SET_IMPLEMENTATION(SynthesisMode, false); + #endif SYNTHESIS_MODE_SET_PROFILING(SynthesisMode, true); }