aboutsummaryrefslogtreecommitdiff
path: root/morphos
diff options
context:
space:
mode:
Diffstat (limited to 'morphos')
-rw-r--r--morphos/morphos.cpp3
-rw-r--r--morphos/morphos_sound.cpp2
2 files changed, 2 insertions, 3 deletions
diff --git a/morphos/morphos.cpp b/morphos/morphos.cpp
index 7f45eaabb2..e8e30418a0 100644
--- a/morphos/morphos.cpp
+++ b/morphos/morphos.cpp
@@ -64,7 +64,7 @@ Gui gui;
OSystem _system;
GameDetector detector;
-SoundEngine sound;
+IMuse sound;
SOUND_DRIVER_TYPE snd_driv;
typedef void (*ScalerFunc)( uint32 src_x, uint32 src_y, uint32 dest_x, uint32 dest_y, uint32 width, uint32 height );
@@ -1879,7 +1879,6 @@ int main( int argc, char *argv[] )
scumm->_scale = detector._scale;
scumm->_gameDataPath = detector._gameDataPath;
scumm->_gameTempo = detector._gameTempo;
- scumm->_soundEngine = detector._soundEngine;
scumm->_videoMode = detector._videoMode;
scumm->_exe_name = detector._exe_name;
scumm->_gameId = detector._gameId;
diff --git a/morphos/morphos_sound.cpp b/morphos/morphos_sound.cpp
index 9abfb1c950..99f55807fe 100644
--- a/morphos/morphos_sound.cpp
+++ b/morphos/morphos_sound.cpp
@@ -40,7 +40,7 @@
extern int GetTicks();
extern Scumm scumm;
-extern SoundEngine sound;
+extern IMuse sound;
extern SOUND_DRIVER_TYPE snd_driv;
#define AHI_BUF_SIZE (8*1024)