Qt: Switch default AudioProcessor to SDL

This commit is contained in:
Jeffrey Pfau 2015-08-05 00:41:57 -07:00
parent 03d2b3312e
commit a1808a2387
1 changed files with 3 additions and 3 deletions

View File

@ -38,10 +38,10 @@ AudioProcessor* AudioProcessor::create() {
#endif
default:
#ifdef BUILD_QT_MULTIMEDIA
return new AudioProcessorQt();
#else
#ifdef BUILD_SDL
return new AudioProcessorSDL();
#else
return new AudioProcessorQt();
#endif
}
}