pm: Support for 6.0.0

This commit is contained in:
Michael Scire
2018-09-08 23:47:15 -07:00
parent 28e4d4411d
commit 488fc0f119
10 changed files with 143 additions and 88 deletions

View File

@@ -480,3 +480,13 @@ Result Registration::EnableDebugForApplication(Handle *out) {
*out = g_debug_application_event->get_handle();
return 0;
}
Result Registration::DisableDebug(u32 which) {
if (which & 1) {
g_debug_on_launch_tid = 0;
}
if (which & 2) {
g_debug_next_application = false;
}
return 0;
}