From 41c5871ec2937ff9135d045ce61b1e1585e130c9 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Fri, 24 Feb 2006 02:33:20 +0000 Subject: [PATCH] napms(12) is the lowest value that actually works in DJGPP. To Do: fix napms() in DJGPP. --- demos/worm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/demos/worm.c b/demos/worm.c index e88ce534..6f075269 100644 --- a/demos/worm.c +++ b/demos/worm.c @@ -23,7 +23,7 @@ Options: -n set number of worms -t make worms leave droppings - $Id: worm.c,v 1.8 2006/02/18 23:28:11 wmcbrine Exp $ + $Id: worm.c,v 1.9 2006/02/24 02:33:20 wmcbrine Exp $ */ #include @@ -267,7 +267,7 @@ int main(int argc, char *argv[]) } } - napms(10); + napms(12); refresh(); nodelay(stdscr, TRUE); @@ -397,7 +397,7 @@ int main(int argc, char *argv[]) addch(flavor[n % FLAVORS]); ref[w->ypos[h] = y][w->xpos[h] = x]++; } - napms(10); + napms(12); refresh(); }