Removed extra debug code

This commit is contained in:
PizzaLovers007 2015-02-13 21:48:11 -06:00
parent c891cbeafa
commit e88ebbbea2

View File

@ -133,8 +133,8 @@ public class Spinner implements HitObject {
data.drawSymbolNumber(extraRotations * 1000, width / 2, height * 2 / 3, 1.0f);
}
g.setColor(Color.white);
g.drawString(String.format("RPM: %d", Math.abs(Math.round(sumVelocity/storedVelocities.length*60))), 100, 100);
int rpm = Math.abs(Math.round(sumVelocity/storedVelocities.length*60));
//TODO: add rpm meter at bottom of spinner
}
/**