From c6cfed27d9847f45f0bca716ee1ccf36ff8b1cb9 Mon Sep 17 00:00:00 2001 From: Peter Repukat Date: Tue, 29 Nov 2016 18:31:15 +0100 Subject: [PATCH] lower update interval of GloSC_GameLauncher --- GloSC_GameLauncher/GloSC_GameLauncher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GloSC_GameLauncher/GloSC_GameLauncher.cpp b/GloSC_GameLauncher/GloSC_GameLauncher.cpp index b8f34e4..071c244 100644 --- a/GloSC_GameLauncher/GloSC_GameLauncher.cpp +++ b/GloSC_GameLauncher/GloSC_GameLauncher.cpp @@ -49,7 +49,7 @@ GloSC_GameLauncher::GloSC_GameLauncher(QWidget *parent) connect(qApp, SIGNAL(aboutToQuit()), this, SLOT(isAboutToBeKilled())); connect(&updateTimer, SIGNAL(timeout()), this, SLOT(checkSharedMem())); - updateTimer.setInterval(250); + updateTimer.setInterval(333); updateTimer.start(); }