From 206bd861967176a27f5dde66d4b1ea677985dc4f Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Thu, 5 Apr 2018 20:56:59 -0500 Subject: [PATCH] Revert "Move hires colors into include file" This reverts commit d8e0159de08b73370be21b6f61c84aa888955af3. --- include/apple2.hires.h | 9 --------- src/apple2.hires.c | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/include/apple2.hires.h b/include/apple2.hires.h index 78a6de9..5a28188 100644 --- a/include/apple2.hires.h +++ b/include/apple2.hires.h @@ -4,15 +4,6 @@ #include "apple2.h" #include "vm_bits.h" -enum hires_color { - HIRES_GREEN, - HIRES_PURPLE, - HIRES_ORANGE, - HIRES_BLUE, - HIRES_BLACK, - HIRES_WHITE, -}; - extern void apple2_hires_draw(apple2 *, int); extern void apple2_hires_dump(apple2 *, FILE *); diff --git a/src/apple2.hires.c b/src/apple2.hires.c index d12822c..b415b80 100644 --- a/src/apple2.hires.c +++ b/src/apple2.hires.c @@ -21,6 +21,15 @@ #include "apple2.hires.h" #include "apple2.text.h" +enum hires_color { + HIRES_GREEN, + HIRES_PURPLE, + HIRES_ORANGE, + HIRES_BLUE, + HIRES_BLACK, + HIRES_WHITE, +}; + /* * This table maps a row number to a base address in the hires graphics * buffer. From there, (base + i) maps to column i in that row.