Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix GetLatencies() not working on streams
This fixes a regression introduced by a typo in 59f75ce. The reason why that obviously wrong code compiled is because of a type safety trainwreck: PaStream* is an alias of void*, which can be implicitly converted from anything, and we accidentally passed a PaStream** instead of a PaStream*. Oops. Fixes #231
- Loading branch information