From 3559ac4049d442b876f92e1993d36769804cd9cd Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 6 Oct 2022 18:46:46 +0200 Subject: [PATCH] Reduce the thread priority to 17 --- src/utils/TcpReceiver.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/utils/TcpReceiver.cpp b/src/utils/TcpReceiver.cpp index e843cbe..a69c0fd 100644 --- a/src/utils/TcpReceiver.cpp +++ b/src/utils/TcpReceiver.cpp @@ -24,8 +24,7 @@ #define WUHB_TEMP_FILE_2_EX "wiiu/apps/temp2.wuhb" TcpReceiver::TcpReceiver(int32_t port) - : CThread(CThread::eAttributeAffCore1, 16, 0x20000, nullptr, nullptr, "Wiiload Thread"), exitRequested(false), serverPort(port), serverSocket(-1) { - + : CThread(CThread::eAttributeAffCore1, 17, 0x20000, nullptr, nullptr, "Wiiload Thread"), exitRequested(false), serverPort(port), serverSocket(-1) { resumeThread(); }