diff options
author | B. Watson <yalhcru@gmail.com> | 2016-02-07 19:30:26 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-02-07 19:30:26 -0500 |
commit | 3505ea037d50c3d3fc52b57037f0020072b6a75e (patch) | |
tree | 8f444c0a2f197ee00afd730664136fd480aeb5c0 | |
parent | 55beabbdf3c2485c44cd3d8ecd1022ca1379bd65 (diff) | |
download | taipan-3505ea037d50c3d3fc52b57037f0020072b6a75e.tar.gz |
save another 24 bytes, now 4626 free
-rw-r--r-- | taipan-applesoft-annotated.txt | 2 | ||||
-rw-r--r-- | taipan.c | 18 |
2 files changed, 15 insertions, 5 deletions
diff --git a/taipan-applesoft-annotated.txt b/taipan-applesoft-annotated.txt index a6d0b97..fe54c00 100644 --- a/taipan-applesoft-annotated.txt +++ b/taipan-applesoft-annotated.txt @@ -1631,7 +1631,7 @@ VTAB 18: PRINT IV$;: & 32,42: - PRINT "Please limit your Firm's name to 22 chara cters or less.";: + PRINT "Please limit your Firm's name to 22 characters or less.";: & 32,59: PRINT NV$: CALL 2518: @@ -731,25 +731,35 @@ void update_guns() { } void fight_stats(int ships, int orders) { - // cursor(0); gotoxy(0, 0); justify_int(ships); cputs(" ship"); if(ships != 1) cputc_s(); - // cputs(" attacking, Taipan! \r\n"); cputs(" attacking"); cprint_taipan_bang(); cspace(); crlf(); cputs("Your orders are: "); + cblank(11); + switch(orders) { + case 1: cputs("Fight"); break; + case 2: cputs("Run"); break; + case 3: cputs("Throw Cargo"); break; + default: break; + } + + /* + // switch() saves 15 bytes over this: if(orders == 1) - cputs("Fight "); + cputs("Fight"); else if(orders == 2) - cputs("Run "); + cputs("Run"); else if(orders == 3) cputs("Throw Cargo"); + */ + hide_cursor(); } |