git-svn-id: svn://ultimatepp.org/upp/trunk@7313 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-04-25 11:53:05 +00:00
parent 2499156e6b
commit 8acda53be4

View file

@ -103,7 +103,7 @@ void Draw::DrawDataOp(int x, int y, int cx, int cy, const String& data, const ch
if((cx > 2048 || cy > 2048) && (GetInfo() & DATABANDS)) {
int yy = 0;
while(yy < cy) {
int ccy = min(cy - yy, 32);
int ccy = min(cy - yy, 32); // Must be multiply of 4 because of dithering
ImageBuffer ib(cx, ccy);
dd->Render(ib);
DrawImageBandRLE(*this, x, y + yy, ib, 16);