mirror of https://github.com/PCSX2/pcsx2.git
Context.cpp: fix minor typo
This commit is contained in:
parent
9c720efe46
commit
06db8eec48
|
@ -119,7 +119,7 @@ namespace GL
|
||||||
if (!context)
|
if (!context)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
||||||
Console.WriteLn("Created a %s context", context->IsGLES() ? "OpenGL ES" : "OpenGL");
|
Console.WriteLn("Created an %s context", context->IsGLES() ? "OpenGL ES" : "OpenGL");
|
||||||
|
|
||||||
// NOTE: Not thread-safe. But this is okay, since we're not going to be creating more than one context at a time.
|
// NOTE: Not thread-safe. But this is okay, since we're not going to be creating more than one context at a time.
|
||||||
static Context* context_being_created;
|
static Context* context_being_created;
|
||||||
|
|
Loading…
Reference in New Issue