1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-22 20:06:40 +00:00

fix dumb mistake

This commit is contained in:
Michael Scire 2019-06-29 03:06:20 -07:00 committed by SciresM
parent 20a48c3a26
commit a5da286351

View file

@ -450,7 +450,8 @@ namespace sts::pm::impl {
}
Result GetProcessEventHandle(Handle *out) {
return g_process_event->GetHandle();
*out = g_process_event->GetHandle();
return ResultSuccess;
}
Result GetProcessEventInfo(ProcessEventInfo *out) {