diff options
-rw-r--r-- | macosx/HBPicture.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBPicture.m b/macosx/HBPicture.m index 9a0b7f931..6a3f7e3ec 100644 --- a/macosx/HBPicture.m +++ b/macosx/HBPicture.m @@ -498,7 +498,7 @@ NSString * const HBPictureChangedNotification = @"HBPictureChangedNotification"; encodeInt(_width); encodeInt(_height); - encodeInt(_keepDisplayAspect); + encodeBool(_keepDisplayAspect); encodeInt(_anamorphicMode); encodeInt(_modulus); @@ -530,7 +530,7 @@ NSString * const HBPictureChangedNotification = @"HBPictureChangedNotification"; decodeInt(_width); decodeInt(_height); - decodeInt(_keepDisplayAspect); + decodeBool(_keepDisplayAspect); decodeInt(_anamorphicMode); decodeInt(_modulus); |