Qt: Fix Windows build when Qt Multimedia is disabled

This commit is contained in:
Jeffrey Pfau 2015-07-31 13:09:17 -07:00
parent 87c4839c1b
commit 59f101eb49
1 changed files with 2 additions and 0 deletions

View File

@ -10,9 +10,11 @@
#include <QtPlugin>
#ifdef _WIN32
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin);
#ifdef BUILD_QT_MULTIMEDIA
Q_IMPORT_PLUGIN(QWindowsAudioPlugin);
#endif
#endif
#endif
int main(int argc, char* argv[]) {
QGBA::GBAApp application(argc, argv);