From 029e2e24ef471b40a36146d96f2a3d363321148c Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 4 May 2008 19:44:21 +0000 Subject: [PATCH] Fixed path to wav file. --- Source/Examples/OpenAL/Playback.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Examples/OpenAL/Playback.cs b/Source/Examples/OpenAL/Playback.cs index 8fe8fe0e..8f68158f 100644 --- a/Source/Examples/OpenAL/Playback.cs +++ b/Source/Examples/OpenAL/Playback.cs @@ -7,7 +7,8 @@ #endregion using System; -using System.Threading; +using System.Threading; +using System.IO; using OpenTK.Audio; @@ -16,7 +17,7 @@ namespace Examples [Example("Playback", ExampleCategory.OpenAL)] 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() {