app/graphics/nxbe/nxbe_setsize.c: Fix backward source/destination in memcpy() in new per-window framebuffer logic.

This commit is contained in:
Gregory Nutt
2019-03-16 17:37:29 -06:00
parent 42628d2209
commit 18d52ecee2
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -177,7 +177,7 @@ static void nxbe_realloc(FAR struct nxbe_window_s *wnd,
{
/* Copy valid row data */
memcpy(src, dest, minstride);
memcpy(dest, src, minstride);
/* Pad any extra pixel data on the right (with zeroes?) */