- bugfix for looping

This commit is contained in:
Mark Vejvoda 2012-09-27 01:18:50 +00:00
parent c33c1826ae
commit 5d72c3f72b
1 changed files with 10 additions and 10 deletions

View File

@ -1413,18 +1413,18 @@ bool VideoPlayer::playFrame(bool swapBuffers) {
}
void VideoPlayer::RestartVideo() {
printf("Restart video\n");
//printf("Restart video\n");
this->stop = false;
this->finished = false;
ctxPtr->started = true;
ctxPtr->error = false;
ctxPtr->stopped = false;
ctxPtr->end_of_media = false;
ctxPtr->isPlaying = true;
ctxPtr->needToQuit = false;
//this->stop = false;
//this->finished = false;
//ctxPtr->started = true;
//ctxPtr->error = false;
//ctxPtr->stopped = false;
//ctxPtr->end_of_media = false;
//ctxPtr->isPlaying = true;
//ctxPtr->needToQuit = false;
return;
//return;
this->closePlayer();