diff options
| author | Franklin Wei <git@fwei.tk> | 2015-05-23 18:34:25 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2015-05-23 18:34:25 -0400 |
| commit | c09f5635ce6edda4a93025a556565921cadc300e (patch) | |
| tree | 3f9b8f5869a74e24c0eb6cc2a7581fb194804d83 | |
| parent | a1f6bdd7e40af2db703558b8dac64ce167d8ecb6 (diff) | |
| download | market-sim-c09f5635ce6edda4a93025a556565921cadc300e.zip market-sim-c09f5635ce6edda4a93025a556565921cadc300e.tar.gz market-sim-c09f5635ce6edda4a93025a556565921cadc300e.tar.bz2 market-sim-c09f5635ce6edda4a93025a556565921cadc300e.tar.xz | |
fix nocurses mode bug
| -rw-r--r-- | src/util.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -396,6 +396,7 @@ void horiz_line_nocurses(void) { for(int i = 0; i < 80; ++i) output("="); + output("\n"); } void (*horiz_line)(void) = horiz_line_nocurses; @@ -444,6 +445,7 @@ void heading_nocurses(const char *fmt, ...) output(" "); for(int i = 0; i < 40 - len - 1 - d; ++i) output("="); + output("\n"); } void (*heading)(const char*, ...) = heading_nocurses; |