summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--framebuffer.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/framebuffer.h b/framebuffer.h
index 8c971c2..7571294 100644
--- a/framebuffer.h
+++ b/framebuffer.h
@@ -32,13 +32,13 @@ typedef struct Pixel_s {
} Pixel;
/* Solid colour pixels */
-#define P_BLACK (Pixel){C_BLACK, C_BLACK, ' '}
-#define P_WHITE (Pixel){C_WHITE, C_WHITE, ' '}
-#define P_RED (Pixel){C_RED, C_RED, '4'}
-#define P_GREEN (Pixel){C_GREEN, C_GREEN, ' '}
-#define P_BLUE (Pixel){C_BLUE, C_BLUE, ' '}
-#define P_YELLOW (Pixel){C_YELLOW, C_YELLOW, ' '}
-#define P_CYAN (Pixel){C_CYAN, C_CYAN, ' '}
+#define P_BLACK (Pixel){C_BLACK, C_BLACK, ' '}
+#define P_WHITE (Pixel){C_WHITE, C_WHITE, ' '}
+#define P_RED (Pixel){C_RED, C_RED, ' '}
+#define P_GREEN (Pixel){C_GREEN, C_GREEN, ' '}
+#define P_BLUE (Pixel){C_BLUE, C_BLUE, ' '}
+#define P_YELLOW (Pixel){C_YELLOW, C_YELLOW, ' '}
+#define P_CYAN (Pixel){C_CYAN, C_CYAN, ' '}
#define P_MAGENTA (Pixel){C_MAGENTA, C_MAGENTA, ' '}
typedef struct Framebuffer_s {