diff options
author | B. Watson <yalhcru@gmail.com> | 2016-02-22 23:09:25 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-02-22 23:09:25 -0500 |
commit | de5a281e1befc79dbd0453f2ce4991521fbb5aa1 (patch) | |
tree | c0b0b637436322afe44918c0744a28de96456118 | |
parent | 220dc02d068039688ff8b4dadceba162b746be3a (diff) | |
download | taipan-de5a281e1befc79dbd0453f2ce4991521fbb5aa1.tar.gz |
save 12 more bytes, 7388 free
-rw-r--r-- | taipan.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -664,7 +664,7 @@ void at_sea(void) { cspace(); rvs_on(); // cputs(location[0]); - print_msg(location[0]); + print_msg(M_at_sea); rvs_off(); cspaces(3); @@ -1212,25 +1212,25 @@ char sea_battle(char id, int num_ships) { cprint_taipan_colon(); gotoxy(4, 4); // cputs(item[0]); - print_msg(item[0]); + print_msg(M_opium); // cputs(": "); cprint_colon_space(); cprintulong(hold_[0]); gotoxy(24, 4); // cputs(item[1]); - print_msg(item[1]); + print_msg(M_silk); // cputs(": "); cprint_colon_space(); cprintulong(hold_[1]); gotoxy(5, 5); // cputs(item[2]); - print_msg(item[2]); + print_msg(M_arms); // cputs(": "); cprint_colon_space(); cprintulong(hold_[2]); gotoxy(21, 5); // cputs(item[3]); - print_msg(item[3]); + print_msg(M_gen_cargo); // cputs(": "); cprint_colon_space(); cprintulong(hold_[3]); @@ -1657,7 +1657,7 @@ void port_stats(void) cputs(firm); comma_space(); // cputs(location[1]); - print_msg(location[1]); + print_msg(M_hong_kong); gotoxy(21, 4); in_use = warehouse_in_use(); |