Fixed: Set VSync value after 3D driver initialized

--HG--
branch : develop
hg/compatibility-develop
kervala 9 years ago
parent cb8bb5f6f4
commit aeb33f9967

@ -1119,12 +1119,6 @@ void prelogInit()
if(ClientCfg.DisableTextureShdr)
Driver->disableHardwareTextureShader();
// Enable or disable VSync
if(ClientCfg.WaitVBL)
Driver->setSwapVBLInterval(1);
else
Driver->setSwapVBLInterval(0);
if (StereoDisplay) // VR_CONFIG // VR_DRIVER
{
// override mode TODO
@ -1150,6 +1144,12 @@ void prelogInit()
return;
}
// Enable or disable VSync
if (ClientCfg.WaitVBL)
Driver->setSwapVBLInterval(1);
else
Driver->setSwapVBLInterval(0);
// initialize system utils class
CSystemUtils::init();
CSystemUtils::setWindow(Driver->getDisplay());

Loading…
Cancel
Save