Skip to content

Commit 1390f80

Browse files
committed
Fix infinite recursion in sound library
1 parent 239710e commit 1390f80

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

java/libraries/sound/src/processing/sound/Engine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public static int[] soundFileInfo(String path){
120120
};
121121

122122
public static int[] soundFilePlayMono(float rate, float pos, float amp, float add, boolean loop, String path, float dur, int cue){
123-
return soundFilePlayMono(rate, pos, amp, add, loop, path, dur, cue);
123+
return methCla.soundFilePlayMono(rate, pos, amp, add, loop, path, dur, cue);
124124
};
125125

126126
public static int[] soundFilePlayMulti(float rate, float amp, float add, boolean loop, String path, float dur, int cue){

0 commit comments

Comments
 (0)