Fix RGB Dithering error cache value at end of row

This commit is contained in:
Rackoon 2025-12-12 20:23:41 +01:00
parent 8494b06c71
commit 6d4f2b509e

View File

@ -1310,9 +1310,9 @@ topalette(
e += 3;
}
e[0] = b0;
e[1] = b1;
e[2] = b2;
e[0] = r0;
e[1] = g0;
e[2] = b0;
}
ImagingSectionLeave(&cookie);
free(errors);