diff --git a/common/JackEngineControl.h b/common/JackEngineControl.h index 2a254b8f..32526f0e 100644 --- a/common/JackEngineControl.h +++ b/common/JackEngineControl.h @@ -104,7 +104,12 @@ struct SERVER_EXPORT JackEngineControl : public JackShmMem fRealTime = rt; fSavedRealTime = false; fServerPriority = priority; + + #ifdef WIN32 + fClientPriority = (rt) ? priority - 3 : 0; + #else fClientPriority = (rt) ? priority - 5 : 0; + #endif fMaxClientPriority = (rt) ? priority - 1 : 0; fVerbose = verbose; fPrevCycleTime = 0;