coolsarath2002 / kryonet

Automatically exported from code.google.com/p/kryonet
0 stars 0 forks source link

Typo in lag listener? #9

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
Oops, thanks! Fixed in svn 78.

Original comment by nathan.s...@gmail.com on 7 Jun 2011 at 5:25