Browse Source

VLCMovieViewController: Fix aspect ratio parameter type

Soomin Lee 5 years ago
parent
commit
d9332e1050
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Sources/VLCMovieViewController.m

+ 1 - 1
Sources/VLCMovieViewController.m

@@ -1258,7 +1258,7 @@ currentMediaHasTrackToChooseFrom:(BOOL)currentMediaHasTrackToChooseFrom
                      }];
 }
 
-- (void) playbackControllerDidSwitchAspectRatio:(NSUInteger)aspectRatio
+- (void)playbackControllerDidSwitchAspectRatio:(VLCAspectRatio)aspectRatio
 {
     _videoOptionsControlBar.isInFullScreen = aspectRatio == VLCAspectRatioFillToScreen;
 }