diff options
author | Paul Gilbert | 2014-08-31 19:42:58 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-08-31 19:42:58 -0400 |
commit | 4bf98c3e420841836dd7d3fecd6ddc7127473a2e (patch) | |
tree | 7d8fbdc9c84cee4e38791823a82a999194bcf6cc /engines/mads | |
parent | 8990a3164351d7b494acc011221ce92a4974def3 (diff) | |
download | scummvm-rg350-4bf98c3e420841836dd7d3fecd6ddc7127473a2e.tar.gz scummvm-rg350-4bf98c3e420841836dd7d3fecd6ddc7127473a2e.tar.bz2 scummvm-rg350-4bf98c3e420841836dd7d3fecd6ddc7127473a2e.zip |
MADS: Actually hook in the new sound player group
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/sound.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/mads/sound.cpp b/engines/mads/sound.cpp index bd99aed2f4..35d948e0b0 100644 --- a/engines/mads/sound.cpp +++ b/engines/mads/sound.cpp @@ -73,7 +73,8 @@ void SoundManager::init(int sectionNumber) { _driver = new Nebular::ASound8(_mixer); break; case 9: - error("Sound driver 9 not implemented"); + _driver = new Nebular::ASound9(_mixer); + break; default: _driver = nullptr; break; |