From: divverent Date: Sun, 26 Apr 2009 18:58:44 +0000 (+0000) Subject: better progress display X-Git-Tag: svn-r421~86 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0d2933a8b4d0cb87cb8ccc26d5ee979ce9a9703b;p=xonotic%2Fnetradiant.git better progress display git-svn-id: svn://svn.icculus.org/netradiant/trunk@334 61c419a2-8eb2-4b30-bcec-8cead039b335 --- diff --git a/tools/quake3/common/threads.c b/tools/quake3/common/threads.c index 8a5fa35a..ed218d6e 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 */ } }