We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e15ca8 commit ff64aa3Copy full SHA for ff64aa3
1 file changed
src/processing/sound/SoundFile.java
@@ -150,7 +150,7 @@ public void jump(float time){
150
this.stop();
151
}
152
153
- m_cue = (int)time * m_info[1];
+ m_cue = (int)(time * m_info[1]);
154
155
if(m_loop == true) {
156
if(this.channels() < 2){
@@ -171,7 +171,7 @@ else if(this.channels() == 2){
171
172
173
public void cue(float time){
174
175
176
177
private void set(){
0 commit comments