OpenGLHostDisplay: Make sure vsync is on at startup

This commit is contained in:
Connor McLaughlin 2020-10-31 14:16:22 +10:00
parent fdb770a596
commit ed0777cd8d
1 changed files with 3 additions and 0 deletions

View File

@ -234,6 +234,9 @@ bool OpenGLHostDisplay::InitializeRenderDevice(std::string_view shader_cache_dir
return false;
#endif
// Start with vsync on.
SetVSync(true);
return true;
}