diff options
author | Kevin Lange <k@dakko.us> | 2011-12-04 04:05:52 -0600 |
---|---|---|
committer | Kevin Lange <k@dakko.us> | 2011-12-04 04:05:52 -0600 |
commit | ab1fc8c49a073ba02bb7ac96c09bacb3d1ff93c3 (patch) | |
tree | a1e6d6e73cbce6e94ed34fd9ecb36495c24f422a /src | |
parent | 0efd68d3f0bbf1d5fd660b43ca6f0354b6e435fd (diff) | |
download | nyancat-ab1fc8c49a073ba02bb7ac96c09bacb3d1ff93c3.tar.gz |
[minor]
Diffstat (limited to 'src')
-rw-r--r-- | src/nyancat.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/nyancat.c b/src/nyancat.c index 5f4c702..853cad0 100644 --- a/src/nyancat.c +++ b/src/nyancat.c @@ -90,7 +90,10 @@ jmp_buf environment; /* * I refuse to include libm to keep this low * on external dependencies. - * */ + * + * Count the number of digits in a number for + * use with string output. + */ int digits(int val) { int d = 1, c; if (val >= 0) for (c = 10; c <= val; c *= 10) d++; @@ -100,7 +103,7 @@ int digits(int val) { /* * These values crop the animation, as we have a full 64x64 stored, - * but we only want to display 80x24. + * but we only want to display 40x24 (double width). */ #define MIN_ROW 20 #define MAX_ROW 43 @@ -219,7 +222,7 @@ int main(int argc, char ** argv) { /* I have a bad habit of being very C99, so this may not be everything */ /* The default terminal is ANSI */ - char term[1024] = {'a','n','s','i'}; + char term[1024] = {'a','n','s','i', 0}; int k, ttype; uint32_t option = 0, done = 0, sb_mode = 0, do_echo = 0; /* Various pieces for the telnet communication */ |