Fixed missed boolean check

This commit is contained in:
Zachary Lund 2014-01-26 01:53:59 -06:00
parent 488c90b3d2
commit cc44c93fbf

View File

@ -237,7 +237,7 @@ static inline void required_extension_error(const char *extension)
static bool gl_init_extensions(HDC hdc)
{
if (wgl_LoadFunctions(hdc)) {
if (!wgl_LoadFunctions(hdc)) {
blog(LOG_ERROR, "Failed to load WGL entry functions.");
return false;
}