diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 9aea103d3a..1d5e3e7e1c 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -310,6 +310,12 @@ static bool ChangeAppPri() } #endif + /* If -1 and this is a debug build, don't. It makes the debugger sluggish. */ +#ifdef DEBUG + if( PREFSMAN->m_iBoostAppPriority == -1 ) + return false; +#endif + return true; }