From acdad6797aaead984c169505e04d8d70e831a206 Mon Sep 17 00:00:00 2001 From: bde Date: Fri, 13 Dec 1996 14:28:59 +0000 Subject: Fixed extra columns in output for input lines with leading spaces. --- games/adventure/setup.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'games/adventure') diff --git a/games/adventure/setup.c b/games/adventure/setup.c index 06371f5..9f10df8 100644 --- a/games/adventure/setup.c +++ b/games/adventure/setup.c @@ -93,6 +93,8 @@ char *argv[]; { if (linestart && c == ' ') /* Convert first spaces to tab */ { + if (count++ % LINE == 0) + printf("\n\t"); printf("0x%02x,", ('\t' ^ random()) & 0xFF); while ((c = getc(infile)) == ' ' && c != EOF); /* Drop the non-whitespace character through */ @@ -107,7 +109,7 @@ char *argv[]; linestart = YES; /* Ready to convert spaces again */ break; } - if (count++ % LINE == 0) /* Finished a line? */ + if (count++ % LINE == 0) printf("\n\t"); printf("0x%02x,", (c ^ random()) & 0xFF); } -- cgit v1.1