瀏覽代碼

VLCMovieViewController: Fix aspect ratio parameter type

Soomin Lee 5 年之前
父節點
當前提交
d9332e1050
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
 }