clarify comment

svn-id: r30283
This commit is contained in:
Max Horn 2008-01-06 00:00:53 +00:00
parent d340e77f24
commit e52591ac0e

View File

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