mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 17:25:28 +00:00
Corrected an assertion.
This commit is contained in:
parent
9855854b39
commit
72ae7b6b00
|
@ -60,7 +60,7 @@ namespace Examples
|
||||||
|
|
||||||
Trace.WriteLine("IsCurrent = true...");
|
Trace.WriteLine("IsCurrent = true...");
|
||||||
context.IsCurrent = true;
|
context.IsCurrent = true;
|
||||||
Trace.Assert(!context.IsCurrent);
|
Trace.Assert(context.IsCurrent);
|
||||||
|
|
||||||
context.Process();
|
context.Process();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue