mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-07 06:44:59 -04:00
Fixed missed boolean check
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user