From: Eric S. Raymond Date: Mon, 7 Feb 2005 20:39:00 +0000 (+0000) Subject: More presentation bugs. X-Git-Tag: 2.0~330 X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=commitdiff_plain;h=fba5d2fbb42afc9fefaf0de890ba4889311cff92 More presentation bugs. --- diff --git a/TODO b/TODO index a058081..ee7251f 100644 --- a/TODO +++ b/TODO @@ -6,5 +6,3 @@ * Code to hurl you out of quadrant if a supernova occurs as you warp in seems to hang. - -* Orbit height is negative. diff --git a/reports.c b/reports.c index e26e932..f670a1e 100644 --- a/reports.c +++ b/reports.c @@ -141,7 +141,7 @@ void lrscan(void) game.state.chart[x][y].starbase = game.state.galaxy[x][y].starbase; game.state.chart[x][y].stars = game.state.galaxy[x][y].stars; if (game.state.galaxy[x][y].supernova) - proutn("***"); + proutn(" ***"); else proutn(" %3d", game.state.chart[x][y].klingons*100 + game.state.chart[x][y].starbase * 10 + game.state.chart[x][y].stars); }