diff options
| -rw-r--r-- | src/qmmp/qmmpaudioengine.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/qmmp/qmmpaudioengine.cpp b/src/qmmp/qmmpaudioengine.cpp index 1d62f741b..d34d42b51 100644 --- a/src/qmmp/qmmpaudioengine.cpp +++ b/src/qmmp/qmmpaudioengine.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2014 by Ilya Kotov * + * Copyright (C) 2009-2015 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -102,7 +102,11 @@ bool QmmpAudioEngine::play() prepareEffects(m_decoders.head()); if(!(m_output = createOutput())) return false; +#ifdef Q_OS_WIN + start(QThread::HighPriority); +#else start(); +#endif return true; } |
