mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 04:55:29 +00:00
Updated using (AudioContext) declaration.
This commit is contained in:
parent
192ee1ba42
commit
06fea0526e
|
@ -20,8 +20,7 @@ namespace Examples
|
||||||
|
|
||||||
public static void Main()
|
public static void Main()
|
||||||
{
|
{
|
||||||
AudioContext context = new AudioContext();
|
using (AudioContext context = new AudioContext())
|
||||||
|
|
||||||
using (SoundReader sound = new SoundReader(filename))
|
using (SoundReader sound = new SoundReader(filename))
|
||||||
{
|
{
|
||||||
Console.WriteLine("Testing WaveReader({0}).ReadToEnd()", filename);
|
Console.WriteLine("Testing WaveReader({0}).ReadToEnd()", filename);
|
||||||
|
|
Loading…
Reference in a new issue