diff options
author | B. Watson <yalhcru@gmail.com> | 2021-04-10 15:45:25 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2021-04-10 15:45:25 -0400 |
commit | 5bfc7802a37c4795d1e08fb1e602f15af2e6fc3c (patch) | |
tree | b2371470dece5691ac4829843238b04145f7cb5a | |
parent | 773cf3bd07f9e2d0a878e7929df873070a7977bc (diff) | |
download | taipan-5bfc7802a37c4795d1e08fb1e602f15af2e6fc3c.tar.gz |
Save 8 bytes
-rw-r--r-- | taipan.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1980,7 +1980,8 @@ void final_stats(void) { cputc_s(); } - cputs("\n\n"); + crlf(); + crlf(); rvs_on(); // cputs("Your score is "); print_msg(M_your_score_is); @@ -1989,7 +1990,8 @@ void final_stats(void) #else cprintulong(score); #endif - cputs(".\n"); + cprint_period(); + crlf(); rvs_off(); if ((score < 100) && (score >= 0)) { |