Explorar o código

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

Felix Paul Kühne %!s(int64=12) %!d(string=hai) anos
pai
achega
5d7a830649
Modificáronse 1 ficheiros con 1 adicións e 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];