diff options
-rw-r--r-- | Graphics.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ from The Open Group. #define GetBit(image, x, y)\ ((bit)((*(image->data + (x) / 8 + (y) * image->bytes_per_line) &\ - (1 << ((x) % 8))) ? 1 : 0)) + (1 << ((x) & 7))) ? 1 : 0)) #if 0 bit |