aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/null
diff options
context:
space:
mode:
authorMax Horn2011-06-06 15:02:33 +0200
committerMax Horn2011-06-06 15:02:33 +0200
commitafb06b51cceb96cf3ac2baae1f562c673114d108 (patch)
tree6bf1c1768ab3de4034d1ddc44f32dce6259126bc /backends/platform/null
parent338a859591c676eab46b1fc3523bc85bce8c15e2 (diff)
downloadscummvm-rg350-afb06b51cceb96cf3ac2baae1f562c673114d108.tar.gz
scummvm-rg350-afb06b51cceb96cf3ac2baae1f562c673114d108.tar.bz2
scummvm-rg350-afb06b51cceb96cf3ac2baae1f562c673114d108.zip
BACKENDS: Unify AudioCD manager instantiation
Diffstat (limited to 'backends/platform/null')
-rw-r--r--backends/platform/null/null.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/platform/null/null.cpp b/backends/platform/null/null.cpp
index 7a0bb109f1..207453ad0d 100644
--- a/backends/platform/null/null.cpp
+++ b/backends/platform/null/null.cpp
@@ -78,7 +78,6 @@ void OSystem_NULL::initBackend() {
_eventManager = new DefaultEventManager(this);
_savefileManager = new DefaultSaveFileManager();
_graphicsManager = new NullGraphicsManager();
- _audiocdManager = new DefaultAudioCDManager();
_mixer = new Audio::MixerImpl(this, 22050);
((Audio::MixerImpl *)_mixer)->setReady(false);
@@ -87,7 +86,7 @@ void OSystem_NULL::initBackend() {
// this way; they need to be hooked into the system somehow to
// be functional. Of course, can't do that in a NULL backend :).
- OSystem::initBackend();
+ BaseBackend::initBackend();
}
bool OSystem_NULL::pollEvent(Common::Event &event) {