diff options
author | June McEnroe <june@causal.agency> | 2018-03-05 12:39:40 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-03-05 12:39:40 -0500 |
commit | 2dda5826731ce18d0d24ae3d13de1c80008227e6 (patch) | |
tree | 24d7eaf113397e8b799114388f49cb77ed49a4a8 /torus.h | |
parent | Generate tags (diff) | |
download | torus-2dda5826731ce18d0d24ae3d13de1c80008227e6.tar.gz torus-2dda5826731ce18d0d24ae3d13de1c80008227e6.zip |
Undef COLOR_ constants in torus.h
Diffstat (limited to '')
-rw-r--r-- | torus.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/torus.h b/torus.h index 076cff9..5f8eb9a 100644 --- a/torus.h +++ b/torus.h @@ -22,6 +22,15 @@ #define ALIGNED(x) __attribute__((aligned(x))) +#undef COLOR_BLACK +#undef COLOR_RED +#undef COLOR_GREEN +#undef COLOR_YELLOW +#undef COLOR_BLUE +#undef COLOR_MAGENTA +#undef COLOR_CYAN +#undef COLOR_WHITE + enum { COLOR_BLACK, COLOR_RED, |