Merge pull request #2897 from federicobond/sound-fix

Fix infinite recursion in sound library
This commit is contained in:
Wilm Thoben
2014-10-16 18:22:11 -07:00

View File

@@ -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){