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

--HG--
branch : develop
This commit is contained in:
kervala 2015-12-25 15:30:14 +01:00
parent a5d3b2d461
commit 21ada78b63

View file

@ -2058,6 +2058,12 @@ bool CDriverGL::getModes(std::vector<GfxMode> &modes)
#elif defined (NL_OS_UNIX) #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; bool found = false;
int screen = DefaultScreen(_dpy); int screen = DefaultScreen(_dpy);