Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/games/tetris Fix the list of keys across the bottom so it fi...
details: https://anonhg.NetBSD.org/src/rev/fbb486873ac3
branches: trunk
changeset: 809011:fbb486873ac3
user: dholland <dholland%NetBSD.org@localhost>
date: Sat Jun 13 04:15:51 2015 +0000
description:
Fix the list of keys across the bottom so it fits on an 80-column screen
again. Fixes PR 49937.
HI MRG
diffstat:
games/tetris/tetris.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r cd72e3ec93ff -r fbb486873ac3 games/tetris/tetris.c
--- a/games/tetris/tetris.c Fri Jun 12 20:25:44 2015 +0000
+++ b/games/tetris/tetris.c Sat Jun 13 04:15:51 2015 +0000
@@ -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 @@
}
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]);
Home |
Main Index |
Thread Index |
Old Index