From: Dave Murphy Date: Mon, 4 Jan 2016 19:43:28 +0000 (+0000) Subject: increase ndsp thread priority X-Git-Tag: v1.1.0~4 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=feb0b095e084df22a7626ecb0961d5ba51d9487d;p=corbenik%2Fctrulib.git increase ndsp thread priority --- diff --git a/libctru/source/ndsp/ndsp.c b/libctru/source/ndsp/ndsp.c index c9e8a93..1b5fce1 100644 --- a/libctru/source/ndsp/ndsp.c +++ b/libctru/source/ndsp/ndsp.c @@ -482,7 +482,7 @@ Result ndspInit(void) rc = svcCreateEvent(&sleepEvent, 0); 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; aptHook(&aptCookie, ndspAptHook, NULL);