From 58c4a169722723324cbf663271b3685516876f12 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 20 Jan 2008 22:19:52 +0000 Subject: [PATCH] Commented out IsCurrent = true to help debug crash on Mono. --- Source/Examples/OpenAL/TestAudioContext.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Examples/OpenAL/TestAudioContext.cs b/Source/Examples/OpenAL/TestAudioContext.cs index ffadc8c7..671e67ad 100644 --- a/Source/Examples/OpenAL/TestAudioContext.cs +++ b/Source/Examples/OpenAL/TestAudioContext.cs @@ -56,9 +56,9 @@ namespace Examples context.IsCurrent = false; Trace.Assert(!context.IsCurrent); - Trace.WriteLine("IsCurrent = true..."); - context.IsCurrent = true; - Trace.Assert(context.IsCurrent); + //Trace.WriteLine("IsCurrent = true..."); + //context.IsCurrent = true; + //Trace.Assert(context.IsCurrent); Trace.WriteLine("AudioContext.CurrentContext..."); Trace.Assert(AudioContext.CurrentContext == context);