From d622c9688417c3efd36e3f39a64654296a458e84 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 10 Oct 2007 22:49:14 +0200 Subject: [PATCH] typo --- libswfdec/swfdec_rect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswfdec/swfdec_rect.c b/libswfdec/swfdec_rect.c index 674bcba6..c6365c17 100644 --- a/libswfdec/swfdec_rect.c +++ b/libswfdec/swfdec_rect.c @@ -205,7 +205,7 @@ swfdec_rect_inside (const SwfdecRect *outer, const SwfdecRect *inner) /* if outer is empty, below will return FALSE */ return outer->x0 <= inner->x0 && outer->y0 <= inner->y0 && - outer->x1 >= inner->y1 && + outer->x1 >= inner->x1 && outer->y1 >= inner->y1; } -- 2.11.4.GIT