mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-03-24 22:25:56 +01:00
fixed small bug in alSourcePlay
This commit is contained in:
parent
f0dcde5310
commit
f20164e785
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue