Commit dd3721c0 authored by Alexandre Julliard's avatar Alexandre Julliard

wineps: Fix the output of indexed bitmaps in PutImage.

parent 7df02452
...@@ -680,7 +680,7 @@ BOOL PSDRV_WriteRGBQUAD(PHYSDEV dev, const RGBQUAD *rgb, int number) ...@@ -680,7 +680,7 @@ BOOL PSDRV_WriteRGBQUAD(PHYSDEV dev, const RGBQUAD *rgb, int number)
int i; int i;
ptr = buf; ptr = buf;
for(i = 0; i < number; i++) for(i = 0; i < number; i++, rgb++)
ptr += sprintf(ptr, "%02x%02x%02x%c", rgb->rgbRed, rgb->rgbGreen, rgb->rgbBlue, ptr += sprintf(ptr, "%02x%02x%02x%c", rgb->rgbRed, rgb->rgbGreen, rgb->rgbBlue,
((i & 0x7) == 0x7) || (i == number - 1) ? '\n' : ' '); ((i & 0x7) == 0x7) || (i == number - 1) ? '\n' : ' ');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment