Module Name: src
Committed By: dholland
Date: Sat Jun 13 04:15:51 UTC 2015
Modified Files:
src/games/tetris: tetris.c
Log Message:
Fix the list of keys across the bottom so it fits on an 80-column screen
again. Fixes PR 49937.
HI MRG
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/games/tetris/tetris.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/tetris/tetris.c
diff -u src/games/tetris/tetris.c:1.28 src/games/tetris/tetris.c:1.29
--- src/games/tetris/tetris.c:1.28 Thu Feb 19 02:27:30 2015
+++ src/games/tetris/tetris.c Sat Jun 13 04:15:51 2015
@@ -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]);