r3185 - trunk/data/qcsrc/common

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Jan 19 05:21:29 EST 2008


Author: div0
Date: 2008-01-19 05:21:28 -0500 (Sat, 19 Jan 2008)
New Revision: 3185

Modified:
   trunk/data/qcsrc/common/util.qc
Log:
fix reorganizing code when number of buckets changed


Modified: trunk/data/qcsrc/common/util.qc
===================================================================
--- trunk/data/qcsrc/common/util.qc	2008-01-19 10:02:41 UTC (rev 3184)
+++ trunk/data/qcsrc/common/util.qc	2008-01-19 10:21:28 UTC (rev 3185)
@@ -276,7 +276,7 @@
 		while((l = fgets(fh)))
 		{
 			n = tokenizebyseparator(l, "\\");
-			for(j = 0; j < n; j += 2)
+			for(j = 1; j < n; j += 2)
 				db_put(db, argv(j), argv(j+1));
 		}
 	}




More information about the nexuiz-commits mailing list