Reduce the thread priority to 17

This commit is contained in:
Maschell 2022-10-06 18:46:46 +02:00
parent 4ed731a3ef
commit 3559ac4049

View File

@ -24,8 +24,7 @@
#define WUHB_TEMP_FILE_2_EX "wiiu/apps/temp2.wuhb" #define WUHB_TEMP_FILE_2_EX "wiiu/apps/temp2.wuhb"
TcpReceiver::TcpReceiver(int32_t port) 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(); resumeThread();
} }