Skip to content

Commit 120b87c

Browse files
committed
Merge pull request processing#2897 from federicobond/sound-fix
Fix infinite recursion in sound library
2 parents 8e3789e + 1390f80 commit 120b87c

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)