diff options
author | B. Watson <yalhcru@gmail.com> | 2021-05-05 03:23:33 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2021-05-05 03:23:33 -0400 |
commit | b7c0eabdc046e6662066fed1cddb057c5a7f722b (patch) | |
tree | b12f6a71107e8224920ad99fc7f61aa1d9bc6cc5 | |
parent | 5cfedfed27f23563f90e03511a9ac86f6c17b269 (diff) | |
download | taipan-b7c0eabdc046e6662066fed1cddb057c5a7f722b.tar.gz |
Fix stupidity in last commit (bad spacing for at_sea())
-rw-r--r-- | taipan.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -734,12 +734,12 @@ void cprintulong(unsigned long ul) { void at_sea(void) { gotoxy(30, 6); - // cspace(); + clrtoeol(); + cspace(); rvs_on(); // cputs(location[0]); print_location(0); rvs_off(); - clrtoeol(); } /* these were rewritten in asm to save 5 bytes, they live in console.s */ |