X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=reports.c;h=39f6930ba35e880ee550775b3f0910e42f14fc30;hb=9b20b9087bc3b0ff892f50a34a09d2ec2e3711d4;hp=d4b1f63c4f4c40944a7e15f89b203102ddda1e0c;hpb=e7c2a3097e455ce93c62a21832e5c584031468db;p=super-star-trek.git diff --git a/reports.c b/reports.c index d4b1f63..39f6930 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 == quadx && j == quady) + 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 == quadx && j == quady) + proutn(">"); + else + proutn(" "); } proutn(" |"); if (i