keep the numBouncesBeforeYield as an integer

This commit is contained in:
Danny Yoo 2012-02-22 01:25:57 -05:00
parent 192e44555e
commit 8aa50dacc7

View File

@ -636,7 +636,7 @@
observedDelay) / observedDelay) /
DESIRED_DELAY_BETWEEN_BOUNCES)); DESIRED_DELAY_BETWEEN_BOUNCES));
MACHINE.params.maxNumBouncesBeforeYield = MACHINE.params.maxNumBouncesBeforeYield =
Math.max(MACHINE.params.maxNumBouncesBeforeYield + delta, Math.max(Math.floor(MACHINE.params.maxNumBouncesBeforeYield + delta),
1); 1);
}; };