diff options
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index af30e20b3..36dd0536c 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -509,7 +509,8 @@ void Client::updateEnv() setEnv("SDL_VIDEO_ALLOW_SCREENSAVER", "0"); #ifndef WIN32 - const int vsync = config.getIntValue("vsync"); + const int vsync = settings.options.test.empty() + ? config.getIntValue("vsync") : 1; // __GL_SYNC_TO_VBLANK is nvidia variable. // vblank_mode is MESA variable. switch (vsync) |