diff options
-rw-r--r-- | macosx/HBFilters.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBFilters.m b/macosx/HBFilters.m index c19c14c81..ac5fdac83 100644 --- a/macosx/HBFilters.m +++ b/macosx/HBFilters.m @@ -138,8 +138,8 @@ static NSDictionary *_nlmeansTunesDict; { /* We only allow *either* Decomb or Deinterlace. So check for the PictureDecombDeinterlace key. */ self.useDecomb = 1; - _decomb = 0; - _deinterlace = 0; + self.decomb = 0; + self.deinterlace = 0; if ([preset[@"PictureDecombDeinterlace"] intValue] == 1) { /* we are using decomb */ |