increase ndsp thread priority

This commit is contained in:
Dave Murphy 2016-01-04 19:43:28 +00:00
parent 59c62c4596
commit feb0b095e0

View File

@ -482,7 +482,7 @@ Result ndspInit(void)
rc = svcCreateEvent(&sleepEvent, 0); rc = svcCreateEvent(&sleepEvent, 0);
if (R_FAILED(rc)) goto _fail2; if (R_FAILED(rc)) goto _fail2;
ndspThread = threadCreate(ndspThreadMain, 0x0, NDSP_THREAD_STACK_SIZE, 0x31, -2, true); ndspThread = threadCreate(ndspThreadMain, 0x0, NDSP_THREAD_STACK_SIZE, 0x18, -2, true);
if (!ndspThread) goto _fail3; if (!ndspThread) goto _fail3;
aptHook(&aptCookie, ndspAptHook, NULL); aptHook(&aptCookie, ndspAptHook, NULL);