From 37bdc531bee2e6cd275e89016ea8e65736c7365b Mon Sep 17 00:00:00 2001 From: Matthias Neeracher Date: Sun, 13 Jul 2008 21:51:32 +0000 Subject: [PATCH] Fix disastrous playback problem --- Sources/VLDocument.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/VLDocument.mm b/Sources/VLDocument.mm index 03f0ecf..37430d4 100644 --- a/Sources/VLDocument.mm +++ b/Sources/VLDocument.mm @@ -587,7 +587,7 @@ switch (int tag = [sender tag]) { case 0: // Play VLSoundOut::Instance()->SetPlayRate(playRate = 1.0f); - if (!nowPlaying) + if (!hasMusicSequence || !nowPlaying) [self play:sender]; else if (VLSoundOut::Instance()->AtEnd()) VLSoundOut::Instance()->SetTime(0);