We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a97edc6 commit 6b71ec6Copy full SHA for 6b71ec6
src/lime/media/OpenALAudioContext.hx
@@ -388,12 +388,12 @@ class OpenALAudioContext
388
389
public function getSourcefv(source:ALSource, param:Int, count:Int = 1):Array<Float>
390
{
391
- return AL.getSourcefv(source, param);
+ return AL.getSourcefv(source, param, count);
392
}
393
394
public function getSourcedvSOFT(source:ALSource, param:Int, count:Int = 1):Array<Float>
395
396
- return AL.getSourcedvSOFT(source, param);
+ return AL.getSourcedvSOFT(source, param, count);
397
398
399
public function getSourcei(source:ALSource, param:Int):Dynamic
0 commit comments