diff --git a/engines/wage/design.cpp b/engines/wage/design.cpp index 1f2e8b76b004..d914aa2fd320 100644 --- a/engines/wage/design.cpp +++ b/engines/wage/design.cpp @@ -127,7 +127,7 @@ void drawPixel(int x, int y, int color, void *data) { if (x >= 0 && x < p->surface->w && y >= 0 && y < p->surface->h) { *((byte *)p->surface->getBasePtr(x, y)) = - (pat[(y - p->y0) % 8] & (1 << (7 - (x - p->x0) % 8))) ? + (pat[y % 8] & (1 << (7 - x % 8))) ? color : kColorWhite; } }