From: <sir...@us...> - 2003-03-30 15:30:56
|
Update of /cvsroot/btplusplus/BT++/src In directory sc8-pr-cvs1:/tmp/cvs-serv31705/src Modified Files: LoaderManager.py Log Message: - Fixed bug in strict hashing. Index: LoaderManager.py =================================================================== RCS file: /cvsroot/btplusplus/BT++/src/LoaderManager.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** LoaderManager.py 29 Mar 2003 15:31:54 -0000 1.12 --- LoaderManager.py 30 Mar 2003 15:30:52 -0000 1.13 *************** *** 242,246 **** and not loader.IsUserPaused() \ and not loader.IsFinished() \ ! and (hsstr == 0 or hscnt < hsmax): hscnt = hscnt - 1 dwcnt = dwcnt - 1 --- 242,246 ---- and not loader.IsUserPaused() \ and not loader.IsFinished() \ ! and (hsstr == 0 or hscnt > 0): hscnt = hscnt - 1 dwcnt = dwcnt - 1 |