From 8f621f4586ffe3e95330e0400c94f2ba6423810c Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 20 Jan 2008 22:17:23 +0000 Subject: [PATCH] Removed Suspend call before MakeCurrent() --- Source/Examples/OpenAL/TestAudioContext.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Examples/OpenAL/TestAudioContext.cs b/Source/Examples/OpenAL/TestAudioContext.cs index e9e60a7c..ffadc8c7 100644 --- a/Source/Examples/OpenAL/TestAudioContext.cs +++ b/Source/Examples/OpenAL/TestAudioContext.cs @@ -56,14 +56,10 @@ namespace Examples context.IsCurrent = false; Trace.Assert(!context.IsCurrent); - context.Suspend(); - Trace.WriteLine("IsCurrent = true..."); context.IsCurrent = true; Trace.Assert(context.IsCurrent); - context.Process(); - Trace.WriteLine("AudioContext.CurrentContext..."); Trace.Assert(AudioContext.CurrentContext == context);