Commented out IsCurrent = true to help debug crash on Mono.
This commit is contained in:
parent
8f621f4586
commit
58c4a16972
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue