Skip to content

Commit

Permalink
Fix oversight in OpenALAudioContext
Browse files Browse the repository at this point in the history
  • Loading branch information
ACrazyTown committed Jan 23, 2025
1 parent a97edc6 commit 6b71ec6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lime/media/OpenALAudioContext.hx
Original file line number Diff line number Diff line change
Expand Up @@ -388,12 +388,12 @@ class OpenALAudioContext

public function getSourcefv(source:ALSource, param:Int, count:Int = 1):Array<Float>
{
return AL.getSourcefv(source, param);
return AL.getSourcefv(source, param, count);
}

public function getSourcedvSOFT(source:ALSource, param:Int, count:Int = 1):Array<Float>
{
return AL.getSourcedvSOFT(source, param);
return AL.getSourcedvSOFT(source, param, count);
}

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

0 comments on commit 6b71ec6

Please sign in to comment.