mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-23 04:12:02 +00:00
fix dumb mistake
This commit is contained in:
parent
20a48c3a26
commit
a5da286351
1 changed files with 2 additions and 1 deletions
|
@ -450,7 +450,8 @@ namespace sts::pm::impl {
|
||||||
}
|
}
|
||||||
|
|
||||||
Result GetProcessEventHandle(Handle *out) {
|
Result GetProcessEventHandle(Handle *out) {
|
||||||
return g_process_event->GetHandle();
|
*out = g_process_event->GetHandle();
|
||||||
|
return ResultSuccess;
|
||||||
}
|
}
|
||||||
|
|
||||||
Result GetProcessEventInfo(ProcessEventInfo *out) {
|
Result GetProcessEventInfo(ProcessEventInfo *out) {
|
||||||
|
|
Loading…
Reference in a new issue