diff options
-rw-r--r-- | src/progs/dyecmd/client.cpp | 7 | ||||
-rw-r--r-- | src/progs/manaplus/client.cpp | 6 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/progs/dyecmd/client.cpp b/src/progs/dyecmd/client.cpp index 41bb7f3cb..eb40fd9c5 100644 --- a/src/progs/dyecmd/client.cpp +++ b/src/progs/dyecmd/client.cpp @@ -393,11 +393,18 @@ void Client::initSoundManager() void Client::initGraphics() { +#ifndef USE_SDL2 WindowManager::applyVSync(); +#endif // USE_SDL2 + runCounters = config.getBoolValue("packetcounters"); graphicsManager.initGraphics(); +#ifdef USE_SDL2 + WindowManager::applyVSync(); +#endif // USE_SDL2 + imageHelper->postInit(); setConfigDefaults2(config); WindowManager::applyGrabMode(); diff --git a/src/progs/manaplus/client.cpp b/src/progs/manaplus/client.cpp index a9735f43e..33d099678 100644 --- a/src/progs/manaplus/client.cpp +++ b/src/progs/manaplus/client.cpp @@ -592,10 +592,16 @@ void Client::initSoundManager() void Client::initGraphics() { +#ifndef USE_SDL2 WindowManager::applyVSync(); +#endif // USE_SDL2 + runCounters = config.getBoolValue("packetcounters"); graphicsManager.initGraphics(); +#ifdef USE_SDL2 + WindowManager::applyVSync(); +#endif // USE_SDL2 imageHelper->postInit(); setConfigDefaults2(config); |