# HG changeset patch # User Matti Hamalainen # Date 1506277184 -10800 # Node ID 14d79e4d82cfb6307a6624e537f6fda14e72def4 # Parent 5c3ee6f028dc70387b5201bd49a67ba1d6728145 Oops, 100L. Had forgotten to change singlecolor mode handling pixel getter argument order .. diff -r 5c3ee6f028dc -r 14d79e4d82cf tools/lib64gfx.c --- a/tools/lib64gfx.c Sun Sep 24 21:17:56 2017 +0300 +++ b/tools/lib64gfx.c Sun Sep 24 21:19:44 2017 +0300 @@ -1431,7 +1431,7 @@ const int bmoffs = bmoffsy + (x * 8); const int vshift = 7 - (xc & 7); - *d++ = getPixel(src, bmoffs, vshift, 0, scroffs, yc); + *d++ = getPixel(src, bmoffs, scroffs, vshift, 0, yc); } else // Multicolor bitmap and variants