Skip to content

Commit

Permalink
Fix example code in AsioPlayback.md
Browse files Browse the repository at this point in the history
  • Loading branch information
henon authored Jun 27, 2024
1 parent a106da4 commit d2d7c8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Docs/AsioPlayback.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Next, I call `Init`. This lets us pass the `IWaveProvider` or `ISampleProvider`

```c#
// optionally, change the starting channel for outputting audio:
asioOut.OutputChannelOffset = 2;
asioOut.ChannelOffset = 2;
asioOut.Init(mySampleProvider);
```

Expand Down Expand Up @@ -59,4 +59,4 @@ And of course we should remember to `Dispose` our instance of `AsioOut` when we'

```c#
asioOut.Dispose();
```
```

0 comments on commit d2d7c8c

Please sign in to comment.