mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Make svcCreateThread panic with invalid IDs
This commit is contained in:
parent
6895a1d9d6
commit
5b8bb12860
1 changed files with 2 additions and 4 deletions
|
@ -389,10 +389,8 @@ void Kernel::createThread() {
|
|||
return;
|
||||
}
|
||||
|
||||
if (id < -2 && id > 3) {
|
||||
Helpers::warn("Invalid processor ID in CreateThread");
|
||||
// TODO: This should return an error
|
||||
id = static_cast<s32>(ProcessorID::AppCore);
|
||||
if (id < -2 || id > 3) {
|
||||
Helpers::panic("Invalid processor ID in CreateThread");
|
||||
}
|
||||
|
||||
regs[0] = Result::Success;
|
||||
|
|
Loading…
Add table
Reference in a new issue