aboutsummaryrefslogtreecommitdiff
path: root/sound/null.cpp
diff options
context:
space:
mode:
authorFlorian Kagerer2010-06-25 18:47:52 +0000
committerFlorian Kagerer2010-06-25 18:47:52 +0000
commit3962f8ba59925ea3ffa5e27e738c2edc9434b74c (patch)
treeea0e0e3694bfa574e05f8e23bf8221ec7a5a5afd /sound/null.cpp
parentbe8a59666894364c04b127b7b97bfd6efdd08b35 (diff)
downloadscummvm-rg350-3962f8ba59925ea3ffa5e27e738c2edc9434b74c.tar.gz
scummvm-rg350-3962f8ba59925ea3ffa5e27e738c2edc9434b74c.tar.bz2
scummvm-rg350-3962f8ba59925ea3ffa5e27e738c2edc9434b74c.zip
AUDIO: some fixes in the audio device code (no sound option, new GUIO flags)
svn-id: r50281
Diffstat (limited to 'sound/null.cpp')
-rw-r--r--sound/null.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/null.cpp b/sound/null.cpp
index c61add2c02..9be545ab76 100644
--- a/sound/null.cpp
+++ b/sound/null.cpp
@@ -45,8 +45,15 @@ public:
const char *getId() const {
return "auto";
}
+ MusicDevices getDevices() const;
};
+MusicDevices AutoMusicPlugin::getDevices() const {
+ MusicDevices devices;
+ devices.push_back(MusicDevice(this, _s(""), MT_AUTO));
+ return devices;
+}
+
//#if PLUGIN_ENABLED_DYNAMIC(NULL)
//REGISTER_PLUGIN_DYNAMIC(NULL, PLUGIN_TYPE_MUSIC, NullMusicPlugin);
//#else