diff options
author | epoch <epoch@hacking.allowed.org> | 2020-05-05 03:54:01 -0500 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2020-05-05 03:54:01 -0500 |
commit | 6e5297675cdd969b7fd9964d67e15f7d473923d7 (patch) | |
tree | 507f8896e1161c63660066c2df4b6bb54f5d840b | |
parent | f11b758ec7cf1f2d428cec0499d62b4b249d9bcf (diff) | |
download | hackvr-6e5297675cdd969b7fd9964d67e15f7d473923d7.tar.gz hackvr-6e5297675cdd969b7fd9964d67e15f7d473923d7.zip |
colors were in the wrong order...
-rw-r--r-- | src/graphics_cs_x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphics_cs_x11.c b/src/graphics_cs_x11.c index 11f0138..8bf8cfa 100644 --- a/src/graphics_cs_x11.c +++ b/src/graphics_cs_x11.c @@ -419,7 +419,7 @@ void set_title(char *t) { } int graphics_sub_init() { - char *ansi_color[]={"black","red","green","yellow","blue","magenta","cyan","white",0}; + char *ansi_color[]={"black","blue","green","cyan","red","magenta","yellow","white",0}; int i; char tmp[64]; Cursor cursor; |