From f35a2797f0f96c6c15e25d2b980a0f60360c244a Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Fri, 9 Apr 2021 16:15:01 -0400 Subject: Highlight port choices --- taipan.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/taipan.c b/taipan.c index 5f59bc1..03af06b 100644 --- a/taipan.c +++ b/taipan.c @@ -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]); -- cgit v1.2.3