summaryrefslogtreecommitdiff
path: root/glyphtest/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'glyphtest/main.c')
-rw-r--r--glyphtest/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/glyphtest/main.c b/glyphtest/main.c
index cc1b60d5e..45adda66f 100644
--- a/glyphtest/main.c
+++ b/glyphtest/main.c
@@ -56,7 +56,7 @@ int main()
for (x = 0; x < bmp.width; x++)
{
byte = bmp.buffer[bmp.pitch * y + x];
- BMP_SetPixelRGB(qdbmp, x, y, byte, byte, byte);
+ BMP_SetPixelRGB(qdbmp, x, y, 255 - byte, 255 - byte, 255 - byte);
BMP_CHECK_ERROR(stdout, 1);
}
}