From 5e78c807b2f921248b54931fa38a376eb8492016 Mon Sep 17 00:00:00 2001 From: p-sam Date: Sun, 12 May 2019 14:31:25 +0000 Subject: [PATCH] Faster polling for actively scaling games --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 6d99b4bd..6c7da821 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -88,7 +88,7 @@ int main(int argc, char **argv) while (true) { clockMgr->Tick(); - svcSleepThread(3000000000ULL); + svcSleepThread(250000000ULL); } ProcessManagement::Exit();