diff options
author | Jonathan Gray | 2003-05-24 23:21:08 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-05-24 23:21:08 +0000 |
commit | 0bd1f1d958933966b5923baa2e20a3abaa8d6ac0 (patch) | |
tree | 0cab7e2b57206f2d84cb3f73b7243279aa2a5a05 /scumm | |
parent | 35b362495e75abaf28825ef9e3f19f7b00c2680c (diff) | |
download | scummvm-rg350-0bd1f1d958933966b5923baa2e20a3abaa8d6ac0.tar.gz scummvm-rg350-0bd1f1d958933966b5923baa2e20a3abaa8d6ac0.tar.bz2 scummvm-rg350-0bd1f1d958933966b5923baa2e20a3abaa8d6ac0.zip |
er oops
svn-id: r7914
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/imuse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index 2d3f2a4ac0..6e1272b188 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -424,7 +424,7 @@ int IMuseInternal::getSoundStatus (int sound, bool ignoreFadeouts) { player = _players; for (int i = ARRAYSIZE(_players); i; --i, ++player) { if (player->isActive() && (!ignoreFadeouts || !player->isFadingOut())) - return 1; + return player->getID(); } return 0; } |