summaryrefslogtreecommitdiffstats
path: root/tetris
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2015-06-13 04:15:51 +0000
committerdholland <dholland@NetBSD.org>2015-06-13 04:15:51 +0000
commitbfa210b63202c7e6425a7b1608a1e81ecbdc8541 (patch)
treef39e6df6c869e8d8ab37eaefd1c908ad719a32f5 /tetris
parentd83ae3073815d24b7f25631da96992bf92984230 (diff)
downloadbsdgames-darwin-bfa210b63202c7e6425a7b1608a1e81ecbdc8541.tar.gz
bsdgames-darwin-bfa210b63202c7e6425a7b1608a1e81ecbdc8541.tar.zst
bsdgames-darwin-bfa210b63202c7e6425a7b1608a1e81ecbdc8541.zip
Fix the list of keys across the bottom so it fits on an 80-column screen
again. Fixes PR 49937. HI MRG
Diffstat (limited to 'tetris')
-rw-r--r--tetris/tetris.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tetris/tetris.c b/tetris/tetris.c
index de772d2f..fb1aa84d 100644
--- a/tetris/tetris.c
+++ b/tetris/tetris.c
@@ -1,4 +1,4 @@
-/* $NetBSD: tetris.c,v 1.28 2015/02/19 02:27:30 mrg Exp $ */
+/* $NetBSD: tetris.c,v 1.29 2015/06/13 04:15:51 dholland Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -196,7 +196,7 @@ main(int argc, char *argv[])
}
snprintf(key_msg, sizeof(key_msg),
-"%s - left %s - rotate %s - right %s - drop %s - pause %s - quit %s - down",
+"%s - left %s - rotate %s - right %s - drop %s - pause %s - quit %s - down",
key_write[0], key_write[1], key_write[2], key_write[3],
key_write[4], key_write[5], key_write[6]);