aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMax Horn2005-01-01 18:53:47 +0000
committerMax Horn2005-01-01 18:53:47 +0000
commitf52be9df681358564991e0988bf70160970104ad (patch)
treed7de4493e5f6e7c0b229014707a915d0b42d07e3 /sound
parent03d4a6fa47e73ddbddc6bc096f6cef14ea7d7441 (diff)
downloadscummvm-rg350-f52be9df681358564991e0988bf70160970104ad.tar.gz
scummvm-rg350-f52be9df681358564991e0988bf70160970104ad.tar.bz2
scummvm-rg350-f52be9df681358564991e0988bf70160970104ad.zip
Changed OSystem::instance() to return a reference, not a pointer (it now matches the Singleton interface)
svn-id: r16402
Diffstat (limited to 'sound')
-rw-r--r--sound/mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index 5358be7274..a981e32cda 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -99,7 +99,7 @@ public:
SoundMixer::SoundMixer() {
- _syst = OSystem::instance();
+ _syst = &OSystem::instance();
_mutex = _syst->createMutex();
_premixChannel = 0;