mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-13 10:49:05 +00:00
Fixed: nglXSwapIntervalEXT return type should be void
This commit is contained in:
parent
e358cc3344
commit
36b7b8c180
1 changed files with 1 additions and 1 deletions
|
@ -2195,7 +2195,7 @@ void CDriverGL::setSwapVBLInterval(uint interval)
|
||||||
#elif defined(NL_OS_UNIX)
|
#elif defined(NL_OS_UNIX)
|
||||||
if (_win && _Extensions.GLXEXTSwapControl)
|
if (_win && _Extensions.GLXEXTSwapControl)
|
||||||
{
|
{
|
||||||
res = nglXSwapIntervalEXT(_dpy, _win, interval) == 0;
|
nglXSwapIntervalEXT(_dpy, _win, interval);
|
||||||
}
|
}
|
||||||
else if (_Extensions.GLXSGISwapControl)
|
else if (_Extensions.GLXSGISwapControl)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue