summaryrefslogtreecommitdiffstats
path: root/tetris
diff options
context:
space:
mode:
authorroy <roy@NetBSD.org>2011-10-03 12:32:15 +0000
committerroy <roy@NetBSD.org>2011-10-03 12:32:15 +0000
commit7eb5acdc8eb7f5fcf16878714eb6449a60f43040 (patch)
tree588fcbdbd846ffa15af2f6691c7aceb7236a4a2e /tetris
parent05e32d2c4644c0f6f1cef31873e8d2d0642efa1c (diff)
downloadbsdgames-darwin-7eb5acdc8eb7f5fcf16878714eb6449a60f43040.tar.gz
bsdgames-darwin-7eb5acdc8eb7f5fcf16878714eb6449a60f43040.tar.zst
bsdgames-darwin-7eb5acdc8eb7f5fcf16878714eb6449a60f43040.zip
Use tiparm instead of vtparm.
Diffstat (limited to 'tetris')
-rw-r--r--tetris/screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tetris/screen.c b/tetris/screen.c
index ed9e849b..2d58303b 100644
--- a/tetris/screen.c
+++ b/tetris/screen.c
@@ -1,4 +1,4 @@
-/* $NetBSD: screen.c,v 1.26 2010/02/03 15:34:39 roy Exp $ */
+/* $NetBSD: screen.c,v 1.27 2011/10/03 12:32:28 roy Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -89,7 +89,7 @@ moveto(int r, int c)
{
char *buf;
- buf = vtparm(cursor_address, r, c);
+ buf = tiparm(cursor_address, r, c);
if (buf != NULL)
putpad(buf);
}