diff options
author | B. Watson <yalhcru@gmail.com> | 2021-04-09 16:15:01 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2021-04-09 16:15:01 -0400 |
commit | f35a2797f0f96c6c15e25d2b980a0f60360c244a (patch) | |
tree | 6e7db18df0635a5ca898ebee0071570bfcbb6f1f | |
parent | c9b3be8313e4e0418ee78d2ce9a6255a8cd7a664 (diff) | |
download | taipan-f35a2797f0f96c6c15e25d2b980a0f60360c244a.tar.gz |
Highlight port choices
-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]); |