fixed small bug in alSourcePlay

This commit is contained in:
Brian Matzon 2004-01-06 19:45:32 +00:00
parent f0dcde5310
commit f20164e785

View file

@ -495,7 +495,7 @@ public abstract class CoreAL extends BaseAL implements BaseALConstants {
*
* @param sources array of sources to play
*/
public static void alSourcePlay(int n, IntBuffer sources) {
public static void alSourcePlay(IntBuffer sources) {
nalSourcePlayv(sources.remaining(), sources, sources.position());
}
private static native void nalSourcePlayv(int n, IntBuffer sources, int offset);