diff options
author | B. Watson <yalhcru@gmail.com> | 2021-05-21 04:10:58 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2021-05-21 04:10:58 -0400 |
commit | 232a6f9649997f58997580580f1596a1e8fe3669 (patch) | |
tree | a3441efcf0955206daeb13c6753e34d7c8aa0ce4 | |
parent | 13ff2f9dc66e21d8604b93aed91c9acf08a9fa74 (diff) | |
download | taipan-232a6f9649997f58997580580f1596a1e8fe3669.tar.gz |
Save 4 bytes, now 8963
-rw-r--r-- | messages.msg | 1 | ||||
-rw-r--r-- | taipan.c | 7 |
2 files changed, 3 insertions, 5 deletions
diff --git a/messages.msg b/messages.msg index 7d82b13..4e51cf6 100644 --- a/messages.msg +++ b/messages.msg @@ -1,4 +1,3 @@ -guns "guns" fight "Fight" throw "Throw Cargo" opium "Opium" @@ -1136,13 +1136,12 @@ char sea_battle(char id, int num_ships) { only once per battle. Bloats the code by 30-odd bytes, but updates are smoother-looking. Maybe. */ rvs_on(); - gotoxy(30, 0); + gotox(30); // cputs(" We have"); print_msg(M_we_have); gotoxy(30, 1); cspaces(6); - // cputs("guns"); - print_msg(M_guns); + cputs("gun"); // rvs_off(); // redundant update_guns(); @@ -2121,7 +2120,7 @@ void final_stats(void) { #ifdef FINAL_STATS_TEST agetc(); - clrscr(); + clr_screen(); return; #endif |