diff --git a/src/AppFrame.cpp b/src/AppFrame.cpp index 9d59c67..bf29cb6 100644 --- a/src/AppFrame.cpp +++ b/src/AppFrame.cpp @@ -405,7 +405,14 @@ void AppFrame::initDeviceParams(std::string deviceId) { if (!frame_timer.IsRunning()) { // frame rate = 1000 / 30 = 33ms + +// windows needs a bit more time or it lags? +#ifdef _WIN32 frame_timer.Start(25); +#else + frame_timer.Start(33); +#endif + } }