Fix freeze on exit bug when using MIDI music, removed no longer required headers

svn-id: r4003
This commit is contained in:
Ruediger Hanke 2002-04-19 10:18:12 +00:00
parent 2f5c7c135d
commit 8db88b342e
2 changed files with 1 additions and 5 deletions

View File

@ -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 );
}

View File

@ -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>