1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

quick fix to keep the cursor in the corner during space warp.

less distracting this way.
This commit is contained in:
tedu 2019-01-20 04:10:12 +00:00
parent e87918d773
commit ae3bacb543

View File

@ -1,4 +1,4 @@
/* $OpenBSD: snake.c,v 1.30 2019/01/20 04:09:15 tedu Exp $ */
/* $OpenBSD: snake.c,v 1.31 2019/01/20 04:10:12 tedu Exp $ */
/* $NetBSD: snake.c,v 1.8 1995/04/29 00:06:41 mycroft Exp $ */
/*
@ -652,6 +652,7 @@ spacewarp(int w)
refresh();
delay(5);
mvaddstr(p.line + 1, p.col + 1, str);
mvaddstr(0, 0, "");
refresh();
delay(10);
}