From: Eric S. Raymond Date: Sat, 12 Feb 2005 13:48:18 +0000 (+0000) Subject: Fix the bracket display. X-Git-Tag: 2.0~322 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=9b20b9087bc3b0ff892f50a34a09d2ec2e3711d4;p=super-star-trek.git Fix the bracket display. --- diff --git a/reports.c b/reports.c index ed1a144..39f6930 100644 --- a/reports.c +++ b/reports.c @@ -208,7 +208,7 @@ void chart(int nn) proutn("%d |", i); for_quadrants(j) { char buf[4]; - if ((game.options & OPTION_SHOWME) && i == quady && j == quadx) + if ((game.options & OPTION_SHOWME) && i == quadx && j == quady) proutn("<"); else proutn(" "); @@ -224,7 +224,7 @@ void chart(int nn) if (*cp == '0') *cp = '.'; proutn(buf); - if ((game.options & OPTION_SHOWME) && i == quady && j == quadx) + if ((game.options & OPTION_SHOWME) && i == quadx && j == quady) proutn(">"); else proutn(" ");