소스 검색

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;
 }