X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=reports.c;h=39f6930ba35e880ee550775b3f0910e42f14fc30;hb=9b20b9087bc3b0ff892f50a34a09d2ec2e3711d4;hp=ed1a14420e049d0e167a7657fa9650fde64ba186;hpb=665b7ab04d99076511156ac4da537f0fa144d268;p=super-star-trek.git 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(" ");