mirror of
https://github.com/processing/processing4.git
synced 2026-01-28 02:41:08 +01:00
Merge pull request #2897 from federicobond/sound-fix
Fix infinite recursion in sound library
This commit is contained in:
@@ -120,7 +120,7 @@ public class Engine {
|
||||
};
|
||||
|
||||
public static int[] soundFilePlayMono(float rate, float pos, float amp, float add, boolean loop, String path, float dur, int cue){
|
||||
return soundFilePlayMono(rate, pos, amp, add, loop, path, dur, cue);
|
||||
return methCla.soundFilePlayMono(rate, pos, amp, add, loop, path, dur, cue);
|
||||
};
|
||||
|
||||
public static int[] soundFilePlayMulti(float rate, float amp, float add, boolean loop, String path, float dur, int cue){
|
||||
|
||||
Reference in New Issue
Block a user