diff options
-rw-r--r-- | taipan.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2261,7 +2261,10 @@ void quit(void) for(choice = 1; choice < 8; ++choice) { if(choice == 7) crlf(); - cputc(choice + '0'); + if(choice == port) + cputc(choice + '0'); + else + cputc(choice + 0xb0); // inverse number cputs(") "); // cputs(location[choice]); print_msg(location[choice]); |