mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 18:15:38 +00:00
Fixed path to wav file.
This commit is contained in:
parent
e5e2f7f827
commit
84756e05d2
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
using System.IO;
|
||||||
|
|
||||||
using OpenTK.Audio;
|
using OpenTK.Audio;
|
||||||
|
|
||||||
|
@ -16,7 +17,7 @@ namespace Examples
|
||||||
[Example("Playback", ExampleCategory.OpenAL)]
|
[Example("Playback", ExampleCategory.OpenAL)]
|
||||||
public class Playback
|
public class Playback
|
||||||
{
|
{
|
||||||
const string filename = "Data\\Audio\\the_ring_that_fell.wav";
|
static readonly string filename = Path.Combine(Path.Combine("Data", "Audio"), "the_ring_that_fell.wav");
|
||||||
|
|
||||||
public static void Main()
|
public static void Main()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue