Skip to content

Commit

Permalink
Remove old fmtc args
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Aug 9, 2024
1 parent 387c263 commit cb8cfe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vsaa/mask.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ def resize_aa_mask(mclip: vs.VideoNode, width: int | None = None, height: int |
if (ow > iw and ow / iw != ow // iw) or (oh > ih and oh / ih != oh // ih):
mclip = Point.scale(mclip, iw * ceil(ow / iw), ih * ceil(oh / ih))

return Box(fulls=1, fulld=1).scale(mclip, ow, oh)
return Box.scale(mclip, ow, oh)

0 comments on commit cb8cfe5

Please sign in to comment.