diff options
author | Max Horn | 2008-01-06 00:00:53 +0000 |
---|---|---|
committer | Max Horn | 2008-01-06 00:00:53 +0000 |
commit | e52591ac0ef9f7611f3ce9c2b8b3e975fb3a4d3e (patch) | |
tree | 615cc6660a18b3e3450602110e9d4e0df6d8b176 | |
parent | d340e77f24e3aff469a82268ed2561b9717a0e08 (diff) | |
download | scummvm-rg350-e52591ac0ef9f7611f3ce9c2b8b3e975fb3a4d3e.tar.gz scummvm-rg350-e52591ac0ef9f7611f3ce9c2b8b3e975fb3a4d3e.tar.bz2 scummvm-rg350-e52591ac0ef9f7611f3ce9c2b8b3e975fb3a4d3e.zip |
clarify comment
svn-id: r30283
-rw-r--r-- | engines/scumm/imuse_digi/dimuse_script.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/imuse_digi/dimuse_script.cpp b/engines/scumm/imuse_digi/dimuse_script.cpp index 35bb9c0ddb..4a31d07c51 100644 --- a/engines/scumm/imuse_digi/dimuse_script.cpp +++ b/engines/scumm/imuse_digi/dimuse_script.cpp @@ -293,8 +293,8 @@ int IMuseDigital::getSoundStatus(int soundId) const { debug(5, "IMuseDigital::getSoundStatus(%d)", soundId); for (int l = 0; l < MAX_DIGITAL_TRACKS; l++) { Track *track = _track[l]; - // Note: We do not check track->toBeRemoved here on purpose. - // Tracks which are about to stop are still running. + // Note: We do not check track->toBeRemoved here on purpose (I *think*, at least). + // After all, tracks which are about to stop still are running (if only for a brief time). if ((track->soundId == soundId) && track->used) { if (_mixer->isSoundHandleActive(track->mixChanHandle)) { return 1; |