From 227ca5f8a2c4c6cd5d31312911bc33dcc8e098e0 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 23 Oct 2011 22:07:13 +0000 Subject: [PATCH] Oops.. back out most of the last change git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4060 42af7a65-404d-4744-a932-0658087f49c3 --- graphics/nxbe/nxbe_bitmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphics/nxbe/nxbe_bitmap.c b/graphics/nxbe/nxbe_bitmap.c index 1c23445b194..dcbdb2ae9b5 100644 --- a/graphics/nxbe/nxbe_bitmap.c +++ b/graphics/nxbe/nxbe_bitmap.c @@ -151,10 +151,10 @@ void nxbe_bitmap(FAR struct nxbe_window_s *wnd, FAR const struct nxgl_rect_s *de } /* Verify that the width of the destination rectangle does not exceed the - * width of the source bitmap data + * width of the source bitmap data (taking into account the bitmap origin) */ - deststride = (((bounds.pt2.x - bounds.pt1.x + 1) * wnd->be->plane[0].pinfo.bpp + 7) >> 3); + deststride = (((bounds.pt2.x - origin->x + 1) * wnd->be->plane[0].pinfo.bpp + 7) >> 3); if (deststride > stride) { gdbg("Bad dest width\n");