Was just browsing Listener.java and found
int lag = lagMillisMax + (int)(Math.random() * (lagMillisMax - lagMillisMin));
I would assume this was supposed to be
int lag = lagMillisMin + (int)(Math.random() * (lagMillisMax - lagMillisMin));
Not awfully significant of course, and I might very well be wrong, just seems
more logical. :)
Original issue reported on code.google.com by ole.tet...@gmail.com on 4 Jun 2011 at 5:35
Original issue reported on code.google.com by
ole.tet...@gmail.com
on 4 Jun 2011 at 5:35