X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=reports.c;h=ed1a14420e049d0e167a7657fa9650fde64ba186;hp=d4b1f63c4f4c40944a7e15f89b203102ddda1e0c;hb=665b7ab04d99076511156ac4da537f0fa144d268;hpb=48a2361c990f0b49edc564d2e182deb3253dcf31 diff --git a/reports.c b/reports.c index d4b1f63..ed1a144 100644 --- a/reports.c +++ b/reports.c @@ -208,7 +208,10 @@ void chart(int nn) proutn("%d |", i); for_quadrants(j) { char buf[4]; - proutn(" "); + if ((game.options & OPTION_SHOWME) && i == quady && j == quadx) + proutn("<"); + else + proutn(" "); if (game.state.galaxy[i][j].supernova) strcpy(buf, "***"); else if (!game.state.galaxy[i][j].charted && game.state.galaxy[i][j].starbase) @@ -221,6 +224,10 @@ void chart(int nn) if (*cp == '0') *cp = '.'; proutn(buf); + if ((game.options & OPTION_SHOWME) && i == quady && j == quadx) + proutn(">"); + else + proutn(" "); } proutn(" |"); if (i