Browse Source

VLCPlaybackController: Fix name of contrast setter

Signed-off-by: Carola Nitz <nitz.carola@googlemail.com>
Soomin Lee 7 years ago
parent
commit
953999aa75
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Sources/VLCPlaybackController.m

+ 1 - 1
Sources/VLCPlaybackController.m

@@ -521,7 +521,7 @@ typedef NS_ENUM(NSUInteger, VLCAspectRatio) {
     return _mediaPlayer.contrast;
 }
 
-- (void)setConstrast:(float)contrast
+- (void)setContrast:(float)contrast
 {
     _mediaPlayer.contrast = contrast;
 }