From c2e12bc2e983d0d8071ba1d9bed5e1fac1e48b38 Mon Sep 17 00:00:00 2001 From: cathery Date: Sun, 24 Nov 2019 05:37:28 +0300 Subject: [PATCH] Reduce psc thread stack size --- source/mainLoop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/mainLoop.cpp b/source/mainLoop.cpp index 07164d6..e917d69 100644 --- a/source/mainLoop.cpp +++ b/source/mainLoop.cpp @@ -200,7 +200,7 @@ Result mainLoop() Thread pscThread; PSCLoopBuffer loopBuffer{pscModule, pscLoopRunning, shouldSleep}; - threadCreate(&pscThread, pscLoop, &loopBuffer, NULL, 0x2000, 0x3B, -2); + threadCreate(&pscThread, pscLoop, &loopBuffer, NULL, 0x300, 0x3B, -2); rc = threadStart(&pscThread); WriteToLog("PSC thread start: 0x", std::hex, rc);