Fixed typo

This commit is contained in:
Nemirtingas 2019-08-27 00:16:53 +02:00
parent 45db63a738
commit ff25f294f0

View file

@ -420,7 +420,7 @@ void Hook_Manager::hook_opengl()
decltype(wglMakeCurrent)* wglMakeCurrent = nullptr; decltype(wglMakeCurrent)* wglMakeCurrent = nullptr;
if (library != nullptr) if (library != nullptr)
{ {
_wglMakeCurrent = (decltype(_wglMakeCurrent))GetProcAddress(library, "wglMakeCurrent"); wglMakeCurrent = (decltype(wglMakeCurrent))GetProcAddress(library, "wglMakeCurrent");
} }
if (wglMakeCurrent != nullptr) if (wglMakeCurrent != nullptr)
{ {