aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1996-12-13 14:28:59 +0000
committerBruce Evans <bde@FreeBSD.org>1996-12-13 14:28:59 +0000
commit58fd4e52ca06087561a849952849795b8b0f28bd (patch)
tree818fdec8d8d6c849641acf1728c89ba656c4eba6 /games
parentfc15f74a8b3f183c08d1da78311f9fc5ca14ab31 (diff)
Notes
Diffstat (limited to 'games')
-rw-r--r--games/adventure/setup.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/games/adventure/setup.c b/games/adventure/setup.c
index 06371f5f3959..9f10df87f253 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);
}