diff options
author | Max Horn | 2005-01-01 18:53:47 +0000 |
---|---|---|
committer | Max Horn | 2005-01-01 18:53:47 +0000 |
commit | f52be9df681358564991e0988bf70160970104ad (patch) | |
tree | d7de4493e5f6e7c0b229014707a915d0b42d07e3 /sound | |
parent | 03d4a6fa47e73ddbddc6bc096f6cef14ea7d7441 (diff) | |
download | scummvm-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.cpp | 2 |
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; |