From 6170d87a62457fdea2faa68464de66f4ff98e654 Mon Sep 17 00:00:00 2001 From: phil Date: Wed, 9 Jul 1997 06:25:45 +0000 Subject: Clean up play, let player see play more often, improve display timing. Preliminary work from PR 2055 (as reverse patches). --- cribbage/io.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'cribbage/io.c') diff --git a/cribbage/io.c b/cribbage/io.c index a1ebe3dc..452a3ecf 100644 --- a/cribbage/io.c +++ b/cribbage/io.c @@ -1,4 +1,4 @@ -/* $NetBSD: io.c,v 1.8 1997/05/17 19:26:18 pk Exp $ */ +/* $NetBSD: io.c,v 1.9 1997/07/09 06:25:47 phil Exp $ */ /*- * Copyright (c) 1980, 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$NetBSD: io.c,v 1.8 1997/05/17 19:26:18 pk Exp $"; +static char rcsid[] = "$NetBSD: io.c,v 1.9 1997/07/09 06:25:47 phil Exp $"; #endif #endif /* not lint */ @@ -407,6 +407,7 @@ msg(fmt, va_alist) va_start(ap); #endif (void)vsprintf(&Msgbuf[Newpos], fmt, ap); + Newpos = strlen(Msgbuf); va_end(ap); endmsg(); } @@ -432,6 +433,7 @@ addmsg(fmt, va_alist) va_start(ap); #endif (void)vsprintf(&Msgbuf[Newpos], fmt, ap); + Newpos = strlen(Msgbuf); va_end(ap); } -- cgit v1.2.3-56-ge451