mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-12-12 20:24:47 +00:00
Changed: Display a warning when calling getModes if Display is NULL
This commit is contained in:
parent
e17413954c
commit
6351ed4c61
1 changed files with 6 additions and 0 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue