aboutsummaryrefslogtreecommitdiff
path: root/common/gameDetector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/gameDetector.cpp')
-rw-r--r--common/gameDetector.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp
index 3e49768486..fac5292b19 100644
--- a/common/gameDetector.cpp
+++ b/common/gameDetector.cpp
@@ -28,6 +28,7 @@
#include "common/plugins.h"
#include "common/scaler.h" // Only for gfx_modes
#include "sound/mididrv.h"
+#include "sound/mixer.h"
#if defined(HAVE_CONFIG_H)
#include "config.h"
@@ -801,6 +802,10 @@ int GameDetector::getMidiDriverType() {
return MD_NULL;
}
+SoundMixer *GameDetector::createMixer() {
+ return new SoundMixer();
+}
+
MidiDriver *GameDetector::createMidi() {
int drv = getMidiDriverType();