Fixed bug that was causing play/pause button not to work with a lot of short tracks.

CQTexperiment
vspader 2007-10-13 08:50:40 +00:00
parent acd71fd43b
commit fca5ddc8d0
1 changed files with 1 additions and 5 deletions

View File

@ -172,15 +172,11 @@
- (void)launchOutputThread
{
[self setPlaybackStatus:kCogStatusPlaying];
if (outputLaunched == NO) {
[self setPlaybackStatus:kCogStatusPlaying];
[output launchThread];
outputLaunched = YES;
}
else {
[self setShouldContinue:YES];
[output resume];
}
}
- (void)requestNextStream:(id)userInfo