From 0d2933a8b4d0cb87cb8ccc26d5ee979ce9a9703b Mon Sep 17 00:00:00 2001 From: divverent Date: Sun, 26 Apr 2009 18:58:44 +0000 Subject: [PATCH] better progress display git-svn-id: svn://svn.icculus.org/netradiant/trunk@334 61c419a2-8eb2-4b30-bcec-8cead039b335 --- tools/quake3/common/threads.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/quake3/common/threads.c b/tools/quake3/common/threads.c index 8a5fa35..ed218d6 100644 --- a/tools/quake3/common/threads.c +++ b/tools/quake3/common/threads.c @@ -59,13 +59,16 @@ int GetThreadWork (void) return -1; } - f = 10*dispatch / workcount; + f = 40*dispatch / workcount; if (f != oldf) { oldf = f; if (pacifier) { - Sys_Printf ("%i...", f); + if(f % 4 == 0) + Sys_Printf("%i", f / 4); + else + Sys_Printf ("."); fflush( stdout ); /* ydnar */ } } -- 2.39.2