Examples: imgui_impl_opengl3 Fix GLAD error condition (#2059, #2002)

`gladLoadGL` returns 0 on fail, not the other way around.
features/potocpav-newer-lines-2
Jiří Šebele ago%!(EXTRA string=7 years) committed by omar
parent d07f494305
commit f8b7e4d94f
  1. 2
      examples/example_sdl_opengl3/main.cpp

@ -64,7 +64,7 @@ int main(int, char**)
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLEW)
bool err = glewInit() != GLEW_OK;
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD)
bool err = gladLoadGL() != 0;
bool err = gladLoadGL() == 0;
#endif
if (err)
{

Loading…
Cancel
Save