diff options
Diffstat (limited to 'sub/sd_lavc.c')
-rw-r--r-- | sub/sd_lavc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sub/sd_lavc.c b/sub/sd_lavc.c index 6661e4fac8..10363748ac 100644 --- a/sub/sd_lavc.c +++ b/sub/sd_lavc.c @@ -289,7 +289,7 @@ static void read_sub_bitmaps(struct sd *sd, struct sub *sub) b->y = r->y; // Choose such that the extended start position is aligned. - pos.x = MP_ALIGN_UP(pos.x - extend, align * 4) + extend; + pos.x = MP_ALIGN_UP(pos.x - extend, align) + extend; b->src_x = pos.x; b->src_y = pos.y; |