Skip to content

Commit 6b71ec6

Browse files
committed
Fix oversight in OpenALAudioContext
1 parent a97edc6 commit 6b71ec6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lime/media/OpenALAudioContext.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,12 +388,12 @@ class OpenALAudioContext
388388

389389
public function getSourcefv(source:ALSource, param:Int, count:Int = 1):Array<Float>
390390
{
391-
return AL.getSourcefv(source, param);
391+
return AL.getSourcefv(source, param, count);
392392
}
393393

394394
public function getSourcedvSOFT(source:ALSource, param:Int, count:Int = 1):Array<Float>
395395
{
396-
return AL.getSourcedvSOFT(source, param);
396+
return AL.getSourcedvSOFT(source, param, count);
397397
}
398398

399399
public function getSourcei(source:ALSource, param:Int):Dynamic

0 commit comments

Comments
 (0)