diff options
-rw-r--r-- | taipan.c | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -1669,13 +1669,11 @@ void mchenry(void) { repair_price = (br * damage) + 1; clear_msg_window(); - // gotoxy(0, 18); - // clrtobot(); cputs("Och, 'tis a pity to be "); cprintulong(percent); - cputs("% damaged.\r\nWe can fix yer whole ship for "); - cprintulong(repair_price); - cputs(",\r\nor make partial repairs if you wish.\r\n"); + cputs("% damaged. We\r\ncan fix yer whole ship for "); + cprintfancy(repair_price); + cputs("\r\nor make partial repairs if you wish.\r\n"); how_much(); cputs("will ye spend? "); @@ -3079,10 +3077,15 @@ hangx: goto hangx; int main(void) { int choice; + atari_text_setup(); + #ifdef MCHENRY_TEST { while(1) { clrscr(); + cputs("year? "); + year = get_num(); + crlf(); cputs("dmg? "); damage = get_num(); // cputs("\r\n"); @@ -3094,8 +3097,6 @@ int main(void) { } #endif - atari_text_setup(); - // cursor(0); #ifdef BIGNUM_TEST bignum_test(); |