mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-19 20:19:13 +12:00
Stub AM::GetDLCTitleInfo got PMD: Gates to Infinity
This commit is contained in:
parent
708bf9f040
commit
1730ab9734
4 changed files with 11 additions and 4 deletions
|
@ -80,7 +80,7 @@ void Kernel::switchToNextThread() {
|
|||
std::optional<int> newThreadIndex = getNextThread();
|
||||
|
||||
if (!newThreadIndex.has_value()) {
|
||||
Helpers::warn("Kernel tried to switch to the next thread but none found. Switching to random thread\n");
|
||||
log("Kernel tried to switch to the next thread but none found. Switching to random thread\n");
|
||||
switchThread(rand() % threadCount);
|
||||
} else {
|
||||
switchThread(newThreadIndex.value());
|
||||
|
@ -308,7 +308,7 @@ bool Kernel::shouldWaitOnObject(KernelObject* object) {
|
|||
return !object->getData<Event>()->fired;
|
||||
|
||||
default:
|
||||
Helpers::warn("Not sure whether to wait on object (type: %s)", object->getTypeName());
|
||||
logThread("Not sure whether to wait on object (type: %s)", object->getTypeName());
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue