mirror of
https://github.com/Maschell/StreamingPluginWiiU.git
synced 2024-11-27 23:24:20 +01:00
Encode on Core 0 AND Core 2
This commit is contained in:
parent
c7c7aefe1f
commit
364f45854c
@ -31,7 +31,7 @@ OSMessage encodeQueueMessages[ENCODE_QUEUE_MESSAGE_COUNT] __attribute__((section
|
||||
|
||||
void EncodingHelper::StartAsyncThread() {
|
||||
int32_t priority = 31;
|
||||
this->pThread = CThread::create(DoAsyncThread, this, CThread::eAttributeAffCore0, priority,0x40000);
|
||||
this->pThread = CThread::create(DoAsyncThread, this, CThread::eAttributeAffCore0 |CThread::eAttributeAffCore2 , priority,0x40000);
|
||||
this->pThread->resumeThread();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user