aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/engine
diff options
context:
space:
mode:
authorathrxx2019-01-14 21:46:04 +0100
committerathrxx2019-03-06 20:48:20 +0100
commit4cc9c81a75f73216ba98b3744a32c900aad36061 (patch)
tree1b8e3b42aa9ec04621e4673daddfc4a657f4c1e3 /engines/kyra/engine
parentf0a305316c716dfadc332eb8df4c95a5e6e6cdb6 (diff)
downloadscummvm-rg350-4cc9c81a75f73216ba98b3744a32c900aad36061.tar.gz
scummvm-rg350-4cc9c81a75f73216ba98b3744a32c900aad36061.tar.bz2
scummvm-rg350-4cc9c81a75f73216ba98b3744a32c900aad36061.zip
KYRA: (EOB1/Amiga) - add sound driver
Diffstat (limited to 'engines/kyra/engine')
-rw-r--r--engines/kyra/engine/eobcommon.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/kyra/engine/eobcommon.cpp b/engines/kyra/engine/eobcommon.cpp
index 21677ac697..0e3e130c94 100644
--- a/engines/kyra/engine/eobcommon.cpp
+++ b/engines/kyra/engine/eobcommon.cpp
@@ -404,6 +404,8 @@ Common::Error EoBCoreEngine::init() {
_sound = new SoundTowns_Darkmoon(this, _mixer);
} else if (_flags.platform == Common::kPlatformPC98) {
+ } else if (_flags.platform == Common::kPlatformAmiga) {
+ _sound = new SoundAmiga_EoB(this, _mixer);
}
assert(_sound);