aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphos/morphos.cpp2
-rw-r--r--morphos/morphos_sound.cpp4
2 files changed, 1 insertions, 5 deletions
diff --git a/morphos/morphos.cpp b/morphos/morphos.cpp
index 487ecbd45f..98cedc1e2d 100644
--- a/morphos/morphos.cpp
+++ b/morphos/morphos.cpp
@@ -169,7 +169,7 @@ OSystem_MorphOS::~OSystem_MorphOS()
if( ScummMusicThread )
{
- Signal( (struct Task *)ScummMusicThread, SIGBREAKF_CTRL_F );
+ Signal( (struct Task *)ScummMusicThread, SIGBREAKF_CTRL_C );
ObtainSemaphore( &ScummMusicThreadRunning ); /* Wait for thread to finish */
ReleaseSemaphore( &ScummMusicThreadRunning );
}
diff --git a/morphos/morphos_sound.cpp b/morphos/morphos_sound.cpp
index c20631ef8f..67fa0ebaee 100644
--- a/morphos/morphos_sound.cpp
+++ b/morphos/morphos_sound.cpp
@@ -21,12 +21,8 @@
*
*/
-#include <devices/timer.h>
-
#include "stdafx.h"
#include "scumm.h"
-#include "mididrv.h"
-#include "imuse.h"
#include <dos/dos.h>
#include <exec/memory.h>