mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Don't modify NeL window if managed by a 3rd party library
This commit is contained in:
parent
3c99b33fb2
commit
30b2829fb1
1 changed files with 5 additions and 1 deletions
|
@ -1786,7 +1786,11 @@ bool CDriverGL::setWindowStyle(EWindowStyle windowStyle)
|
|||
// --------------------------------------------------
|
||||
bool CDriverGL::setMode(const GfxMode& mode)
|
||||
{
|
||||
H_AUTO_OGL(CDriverGL_setMode)
|
||||
H_AUTO_OGL(CDriverGL_setMode);
|
||||
|
||||
// don't modify window or screen if managed by a 3rd party library
|
||||
if (!_DestroyWindow)
|
||||
return false;
|
||||
|
||||
if (!setScreenMode(mode))
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue