diff --git a/nin/dasBoot/BEATBEAN.js b/nin/dasBoot/BEATBEAN.js index 10f2e21..9dd58c4 100644 --- a/nin/dasBoot/BEATBEAN.js +++ b/nin/dasBoot/BEATBEAN.js @@ -16,7 +16,7 @@ }; FRAME_FOR_BEAN = function(bean) { - return ((bean - 1.5) * framesPerBeat + 0.5) | 0; + return (bean * framesPerBeat - 0.5) | 0; }; };