fb_generic: fix blit2FB call

This commit is contained in:
Stefan Seyfried
2017-02-05 22:50:23 +01:00
committed by M. Liebmann
parent 9fe5dfbe50
commit ecb6531fd7

View File

@@ -950,7 +950,7 @@ _display:
checkFbArea(x, yy, width, height, true); checkFbArea(x, yy, width, height, true);
if (paintBg) if (paintBg)
paintBoxRel(x, yy, width, height, colBg); paintBoxRel(x, yy, width, height, colBg);
blit2FB(data, width, height, x, yy, 0, 0, true); blit2FB(data, width, height, x, yy);
checkFbArea(x, yy, width, height, false); checkFbArea(x, yy, width, height, false);
return true; return true;
} }