diff options
author | Kevin Lange <k@dakko.us> | 2011-12-03 19:27:36 -0600 |
---|---|---|
committer | Kevin Lange <k@dakko.us> | 2011-12-03 19:27:36 -0600 |
commit | c556b4ec190e414beed221e0d5307cde1949aec1 (patch) | |
tree | c046b8c8bcce6b184a9f27300bdcc044d55db38d /src | |
parent | 8f120c4db3104ae5febcb925c0acdd61434c7e9f (diff) | |
download | nyancat-c556b4ec190e414beed221e0d5307cde1949aec1.tar.gz |
Restore updated VT220 palette
Diffstat (limited to 'src')
-rw-r--r-- | src/nyancat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nyancat.c b/src/nyancat.c index 0262555..7554630 100644 --- a/src/nyancat.c +++ b/src/nyancat.c @@ -291,9 +291,9 @@ ready: output = "\333\333"; break; case 6: - colors[','] = " "; /* Blue background */ - colors['.'] = "**"; /* White stars */ - colors['\''] = "##"; /* Black border */ + colors[','] = "::"; /* Blue background */ + colors['.'] = "@@"; /* White stars */ + colors['\''] = " "; /* Black border */ colors['@'] = "##"; /* Tan poptart */ colors['$'] = "??"; /* Pink poptart */ colors['-'] = "<>"; /* Red poptart */ @@ -303,7 +303,7 @@ ready: colors['#'] = "++"; /* Green rainbow */ colors['='] = "~~"; /* Light blue rainbow */ colors[';'] = "$$"; /* Dark blue rainbow */ - colors['*'] = " "; /* Gray cat face */ + colors['*'] = ";;"; /* Gray cat face */ colors['%'] = "()"; /* Pink cheeks */ always_escape = 1; break; |