Davide Beatrici (@davidebeatrici) commented about dlls/opengl32/wgl.c:
continue; }
if ((ppfd->dwFlags & PFD_SUPPORT_GDI) && !(format.dwFlags & PFD_SUPPORT_GDI))
For consistency:
```suggestion:-0+0 if ((ppfd->dwFlags & PFD_SUPPORT_GDI) != (format.dwFlags & PFD_SUPPORT_GDI)) ```