Changed: Display a warning when calling getModes if Display is NULL

This commit is contained in:
kervala 2015-12-25 15:30:14 +01:00
parent ba706b46f7
commit 3b32412d2a

View file

@ -2058,6 +2058,12 @@ bool CDriverGL::getModes(std::vector<GfxMode> &modes)
#elif defined (NL_OS_UNIX)
if (!_dpy)
{
nlwarning("3D: Unable to list modes because Display is NULL, did you forget to call init() ?");
return false;
}
bool found = false;
int screen = DefaultScreen(_dpy);