mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
Applets: Warn instead of panic
This commit is contained in:
parent
b3443623f5
commit
467ab161ff
2 changed files with 2 additions and 2 deletions
|
@ -6,6 +6,6 @@ void MiiSelectorApplet::reset() {}
|
|||
Result::HorizonResult MiiSelectorApplet::start() { return Result::Success; }
|
||||
|
||||
Result::HorizonResult MiiSelectorApplet::receiveParameter() {
|
||||
Helpers::panic("Mii Selector received parameter");
|
||||
Helpers::warn("Mii Selector: Unimplemented ReceiveParameter");
|
||||
return Result::Success;
|
||||
}
|
|
@ -6,6 +6,6 @@ void SoftwareKeyboardApplet::reset() {}
|
|||
Result::HorizonResult SoftwareKeyboardApplet::start() { return Result::Success; }
|
||||
|
||||
Result::HorizonResult SoftwareKeyboardApplet::receiveParameter() {
|
||||
Helpers::panic("Software keyboard received parameter");
|
||||
Helpers::warn("Software keyboard: Unimplemented ReceiveParameter");
|
||||
return Result::Success;
|
||||
}
|
Loading…
Add table
Reference in a new issue