Explorar el Código

Movie View: reset playback position if > .95 instead of > .99

Felix Paul Kühne hace 12 años
padre
commit
5d7a830649
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      AspenProject/VLCMovieViewController.m

+ 1 - 1
AspenProject/VLCMovieViewController.m

@@ -180,7 +180,7 @@
 {
     [_mediaPlayer play];
 
-    if (self.mediaItem.lastPosition && [self.mediaItem.lastPosition floatValue] < 0.99)
+    if (self.mediaItem.lastPosition && [self.mediaItem.lastPosition floatValue] < .95)
         [_mediaPlayer setPosition:[self.mediaItem.lastPosition floatValue]];
     self.playbackSpeedSlider.value = [self _playbackSpeed];
     [self _updatePlaybackSpeedIndicator];