From cf462f739f06a7a6429b6e45a00ffa439f06fd47 Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 1 Dec 2008 02:30:53 +0000 Subject: [PATCH] Improperly initialized rectangle git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1364 42af7a65-404d-4744-a932-0658087f49c3 --- graphics/nxbe/nxbe_setposition.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/nxbe/nxbe_setposition.c b/graphics/nxbe/nxbe_setposition.c index 46be211eda..f29644d336 100644 --- a/graphics/nxbe/nxbe_setposition.c +++ b/graphics/nxbe/nxbe_setposition.c @@ -107,7 +107,7 @@ void nxbe_setposition(FAR struct nxbe_window_s *wnd, * background window. */ - nxgl_rectintersect(&rect, &rect, &wnd->be->bkgd.bounds); + nxgl_rectintersect(&rect, &wnd->bounds, &wnd->be->bkgd.bounds); /* Then redraw this window AND all windows below it. Having moved the * window, we may have exposed previoulsy obscured portions of windows