X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=reports.c;h=b074cd8801e9e621ad6860fdb2a7b84a0c0b38bf;hp=d4b1f63c4f4c40944a7e15f89b203102ddda1e0c;hb=7de1f930478a9efcc3f093eb62414ec18d396f7b;hpb=e7c2a3097e455ce93c62a21832e5c584031468db diff --git a/reports.c b/reports.c index d4b1f63..b074cd8 100644 --- a/reports.c +++ b/reports.c @@ -195,11 +195,11 @@ void chart(int nn) rechart(); if (lastchart < game.state.date && condit == IHDOCKED) { - proutn("Spock- \"I revised the Star Chart from the starbase's records.\"\n\r"); + proutn("Spock- \"I revised the Star Chart from the starbase's records.\"\n"); rechart(); } - if (nn == 0) proutn(" STAR CHART FOR THE KNOWN GALAXY\n\r"); + if (nn == 0) proutn(" STAR CHART FOR THE KNOWN GALAXY\n"); if (game.state.date > lastchart) prout("(Last surveillance update %d stardates ago).", (int)(game.state.date-lastchart)); @@ -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,9 +224,13 @@ 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