From 4016fe281feb5d0176971a56f07d2145371dae56 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Sun, 5 Feb 2006 11:22:47 +0000 Subject: Fix xxmc subpictures (broken since 1.1.1) thanks Thomas CVS patchset: 7868 CVS date: 2006/02/05 11:22:47 --- src/xine-engine/alphablend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/xine-engine/alphablend.c b/src/xine-engine/alphablend.c index 9733ca6b3..8be28ccdb 100644 --- a/src/xine-engine/alphablend.c +++ b/src/xine-engine/alphablend.c @@ -2019,7 +2019,7 @@ void _x_blend_xx44 (uint8_t *dst_img, vo_overlay_t *img_overl, dst = dst_y; for (x = 0; x < src_width;) { - int len = (x + rle->len > hili_right) ? hili_right - x : rle->len; + int len = (x + rle->len > clip_right) ? clip_right - x : rle->len; int clipped = (y < clip_top); if (len > 0) { -- cgit v1.2.3