From cf9ef56d6df2c4dc98f5466d61710b4a3cd1eb5e Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 3 Jan 2016 17:46:50 +0100 Subject: [PATCH] fb_ng: fix typo in blitBox2FB() Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/689b2e472af0cb65d3852adc4c758a8307aad150 Author: Stefan Seyfried Date: 2016-01-03 (Sun, 03 Jan 2016) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/driver/framebuffer_ng.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/framebuffer_ng.cpp b/src/driver/framebuffer_ng.cpp index 777363cf3..96dbbc206 100644 --- a/src/driver/framebuffer_ng.cpp +++ b/src/driver/framebuffer_ng.cpp @@ -1242,7 +1242,7 @@ void CFrameBuffer::blitBox2FB(const fb_pixel_t* boxBuf, uint32_t width, uint32_t fbp += swidth; line++; } - accel->mark(xoff, yoff, xoff + width, xoff + height); + accel->mark(xoff, yoff, xoff + width, yoff + height); checkFbArea(xoff, yoff, width, height, false); }