diff options
| author | Paweł Kołodziejski | 2007-12-04 00:48:02 +0000 | 
|---|---|---|
| committer | Paweł Kołodziejski | 2007-12-04 00:48:02 +0000 | 
| commit | 1e49111dc71002c6b9ed9af5ea52bcc206ba455d (patch) | |
| tree | 29def82d59f132992908126bba8e0ecadf68a25a | |
| parent | 3cd1e6588164a729528d203b44a30542ff634647 (diff) | |
| download | scummvm-rg350-1e49111dc71002c6b9ed9af5ea52bcc206ba455d.tar.gz scummvm-rg350-1e49111dc71002c6b9ed9af5ea52bcc206ba455d.tar.bz2 scummvm-rg350-1e49111dc71002c6b9ed9af5ea52bcc206ba455d.zip | |
correction based on disassembly 
svn-id: r29712
| -rw-r--r-- | engines/scumm/imuse_digi/dimuse_music.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/scumm/imuse_digi/dimuse_music.cpp b/engines/scumm/imuse_digi/dimuse_music.cpp index a67d3734b9..d63ccc2dce 100644 --- a/engines/scumm/imuse_digi/dimuse_music.cpp +++ b/engines/scumm/imuse_digi/dimuse_music.cpp @@ -136,7 +136,7 @@ void IMuseDigital::playDigMusic(const char *songName, const imuseDigTable *table  	int hookId = 0;  	if (songName != NULL) { -		if ((_attributes[DIG_SEQ_OFFSET + 38] != 0) && (_attributes[DIG_SEQ_OFFSET + 41] == _attributes[DIG_SEQ_OFFSET + 38])) { +		if ((_attributes[DIG_SEQ_OFFSET + 38]) && (!_attributes[DIG_SEQ_OFFSET + 41])) {  			if ((atribPos == 43) || (atribPos == 44))  				hookId = 3;  		} | 
