diff options
| author | Max Horn | 2010-02-13 17:42:49 +0000 |
|---|---|---|
| committer | Max Horn | 2010-02-13 17:42:49 +0000 |
| commit | ac4d325e0d61b649026a5f5414f749697b285ccc (patch) | |
| tree | c58f62596d050be62e98180c0255e7998a9a62e4 /engines/sci/sound/iterator/core.cpp | |
| parent | 24fd77eb242c4d90e8c3a3b0bcc5f0c48a4dc77f (diff) | |
| download | scummvm-rg350-ac4d325e0d61b649026a5f5414f749697b285ccc.tar.gz scummvm-rg350-ac4d325e0d61b649026a5f5414f749697b285ccc.tar.bz2 scummvm-rg350-ac4d325e0d61b649026a5f5414f749697b285ccc.zip | |
SCI: Add global g_sci pointer to the active SciEngine instance
svn-id: r48046
Diffstat (limited to 'engines/sci/sound/iterator/core.cpp')
| -rw-r--r-- | engines/sci/sound/iterator/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sound/iterator/core.cpp b/engines/sci/sound/iterator/core.cpp index c7c9ace028..7e5b690c08 100644 --- a/engines/sci/sound/iterator/core.cpp +++ b/engines/sci/sound/iterator/core.cpp @@ -228,7 +228,7 @@ Common::Error SfxPlayer::init(ResourceManager *resMan, int expected_latency) { switch (musicDriver) { case MD_ADLIB: // FIXME: There's no Amiga sound option, so we hook it up to AdLib - if (((SciEngine *)g_engine)->getPlatform() == Common::kPlatformAmiga) + if (g_sci->getPlatform() == Common::kPlatformAmiga) _mididrv = MidiPlayer_Amiga_create(_soundVersion); else _mididrv = MidiPlayer_AdLib_create(_soundVersion); |
