1
0
Fork 0

(svn r3513) Fix strange typo in last commit ...

release/0.5
peter1138 2006-02-01 09:11:31 +00:00
parent 80952253c2
commit 2b98509692
1 changed files with 1 additions and 1 deletions

View File

@ -944,7 +944,7 @@ static int PickRandomBit(uint bits)
num = RandomRange(num);
for (i = 0; !((bits & 1) && ((int)--num) < 0); bits >> = 1, i++);
for (i = 0; !((bits & 1) && ((int)--num) < 0); bits >>= 1, i++);
return i;
}