mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 04:43:10 +00:00
mc.mitm: remove return value on LaunchModules function
This commit is contained in:
parent
faf41df7e0
commit
15ce645bd9
1 changed files with 4 additions and 6 deletions
|
@ -89,10 +89,9 @@ void __libnx_exception_handler(ThreadExceptionDump* ctx) {
|
||||||
ams::CrashHandler(ctx);
|
ams::CrashHandler(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
ams::Result LaunchModules(void) {
|
void LaunchModules(void) {
|
||||||
R_TRY(ams::mitm::bluetooth::Launch());
|
R_ABORT_UNLESS(ams::mitm::bluetooth::Launch());
|
||||||
R_TRY(ams::mitm::btm::Launch());
|
R_ABORT_UNLESS(ams::mitm::btm::Launch());
|
||||||
return ams::ResultSuccess();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void WaitModules(void) {
|
void WaitModules(void) {
|
||||||
|
@ -101,8 +100,7 @@ void WaitModules(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
R_ABORT_UNLESS(LaunchModules());
|
LaunchModules();
|
||||||
WaitModules();
|
WaitModules();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue