Psmf: Use kernel memory for helper thread stack.
Also, thread stacks must be 0x200 or larger.
This commit is contained in:
parent
1d528d6f3b
commit
dd804660c9
5 changed files with 29 additions and 5 deletions
|
@ -220,7 +220,7 @@ public:
|
|||
|
||||
void ScheduleFinish(u32 handle) {
|
||||
if (!finishThread) {
|
||||
finishThread = new HLEHelperThread("scePsmfPlayer", "scePsmfPlayer", "__PsmfPlayerFinish", playbackThreadPriority, 0x100);
|
||||
finishThread = new HLEHelperThread("scePsmfPlayer", "scePsmfPlayer", "__PsmfPlayerFinish", playbackThreadPriority, 0x200);
|
||||
finishThread->Start(handle, 0);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue